/**
 * Press Release EOB Public Styles
 */

/* Form Styles */
.pr-eob-submission-form {
    max-width: 800px;
    margin: 2em auto;
    padding: 2em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pr-eob-form-section {
    margin-bottom: 2em;
}

.pr-eob-form-section h3 {
    margin: 0 0 1em;
    padding-bottom: 0.5em;
    border-bottom: 2px solid #f0f0f0;
    color: #333;
    font-size: 1.4em;
}

.pr-eob-form-field {
    margin-bottom: 1.5em;
}

.pr-eob-form-field label {
    display: block;
    margin-bottom: 0.5em;
    color: #555;
    font-weight: 600;
}

.pr-eob-form-field input[type="text"],
.pr-eob-form-field input[type="url"],
.pr-eob-form-field input[type="tel"],
.pr-eob-form-field textarea {
    width: 100%;
    padding: 0.8em;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.pr-eob-form-field input[type="text"]:focus,
.pr-eob-form-field input[type="url"]:focus,
.pr-eob-form-field input[type="tel"]:focus,
.pr-eob-form-field textarea:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 115, 170, 0.2);
}

.pr-eob-radio-group {
    display: flex;
    gap: 2em;
}

.pr-eob-radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: normal;
}

.pr-eob-form-submit {
    margin-top: 2em;
    text-align: center;
}

/* Button Styles */
.pr-eob-button {
    display: inline-block;
    padding: 0.8em 2em;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pr-eob-button:hover {
    background: #005177;
}

.pr-eob-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Message Styles */
.pr-eob-form-message {
    margin-top: 1em;
    padding: 1em;
    border-radius: 4px;
    text-align: center;
}

.pr-eob-form-message.pr-eob-success {
    background: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.pr-eob-form-message.pr-eob-error {
    background: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

/* Sidebar Styles */
.pr-eob-sidebar {
    padding: 1.5em;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pr-eob-sidebar-company {
    margin-bottom: 2em;
}

.pr-eob-sidebar-company h3 {
    margin: 0 0 1em;
    color: #333;
    font-size: 1.4em;
}

.pr-eob-sidebar-background {
    margin-bottom: 1em;
    color: #666;
    font-size: 0.95em;
    line-height: 1.6;
}

.pr-eob-sidebar-website {
    margin-top: 1em;
}

.pr-eob-sidebar-website a {
    color: #0073aa;
    text-decoration: none;
    word-break: break-all;
}

.pr-eob-sidebar-website a:hover {
    text-decoration: underline;
}

.pr-eob-sidebar-submit {
    margin-top: 2em;
    text-align: center;
}

/* Press Release Tag */
.pr-eob-tag {
    display: inline-block;
    padding: 0.2em 0.6em;
    background: #0073aa;
    color: #fff;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 3px;
    margin-right: 0.5em;
}

/* Company Info Link */
.pr-eob-company-info {
    margin-top: 2em;
    padding-top: 1em;
    border-top: 1px solid #f0f0f0;
    color: #666;
    font-size: 0.95em;
}

.pr-eob-company-info a {
    color: #0073aa;
    text-decoration: none;
}

.pr-eob-company-info a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .pr-eob-submission-form {
        padding: 1.5em;
        margin: 1em;
    }

    .pr-eob-radio-group {
        flex-direction: column;
        gap: 1em;
    }

    .pr-eob-form-section h3 {
        font-size: 1.2em;
    }
} 