/* Update your css/registration.css file */

.ocoaching-register-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.ocoaching-register-button:hover {
    background-color: #45a049;
}

.ocoaching-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.ocoaching-modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.ocoaching-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.ocoaching-close:hover,
.ocoaching-close:focus {
    color: black;
    text-decoration: none;
}

#ocoaching-register-form input[type="text"],
#ocoaching-register-form input[type="email"],
#ocoaching-register-form input[type="password"],
#ocoaching-register-form input[type="tel"],
#ocoaching-register-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

#ocoaching-register-form input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

#ocoaching-register-form input[type="submit"]:hover {
    background-color: #45a049;
}

.geographical-area-checkboxes {
    columns: 2;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}


.registration-error {
    background-color: #ffe6e6;
    border: 1px solid #ff9999;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    color: #cc0000;
    text-align: center;
}

.registration-error a {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 3px;
}

.registration-error a:hover {
    background-color: #005177;
}

/* Cases Container */
/*.cases-container {*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    padding: 2rem;*/
/*}*/

/* Header Styles */
.cases-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.back-button {
    background: #1c3144;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background: #2c4154;
}

.cases-stats a {
    color: #1c3144;
    text-decoration: none;
    padding: 0.5rem;
    margin: 0 0.25rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cases-stats a.active {
    background: #e2e8f0;
    font-weight: 600;
}

/* Filters Section */
.cases-filters {
    margin-bottom: 2rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-input {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
}

.filter-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: white;
    min-width: 150px;
    flex: 1;
}

.filter-button {
    padding: 0.75rem 1.5rem;
    background: #1c3144;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.filter-button:hover {
    background: #2c4154;
}

/* Table Styles */
.cases-table-container {
    overflow-x: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.cases-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.cases-table th,
.cases-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cases-table th {
    background: #f8fafc;
    font-weight: 600;
    color: #1c3144;
}

.cases-table tbody tr:hover {
    background: #f8fafc;
}

.course-started {
    color: #059669;
    font-weight: 600;
}

/* View Details Button */
.view-case-details {
    padding: 0.5rem 1rem;
    background: #1c3144;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-case-details:hover {
    background: #2c4154;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-content {
    position: relative;
    background: white;
    margin: 5% auto;
    padding: 2rem;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    max-height: 90vh;
    overflow-y: auto;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
}

/* Pagination */
.cases-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.cases-pagination a {
    padding: 0.5rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    color: #1c3144;
    text-decoration: none;
    transition: all 0.3s ease;
}
