.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    gap: 24px;
    height: auto;
    min-height: 100vh;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--main-white);
    background-color: var(--main-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    width: 92%;
    max-width: 1200px;
}

.user-actions {
    width: 92%;
    max-width: 1200px;
    margin-bottom: 24px;
}

.user-actions form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background-color: var(--main-white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

form input,
form select {
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    box-shadow: var(--shadow);
    font-size: 16px;
    transition: all 0.2s ease;
    width: 100%;
}

form input:focus,
form select:focus {
    outline: none;
    border-color: var(--main-color);
    box-shadow: 0 0 0 2px rgba(var(--main-color-rgb), 0.2);
}

form button {
    background-color: var(--main-color);
    color: var(--main-white);
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

table {
    width: 92%;
    max-width: 1200px;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--main-white);
}

table thead {
    background-color: var(--main-color);
    color: var(--main-white);
}

table th {
    padding: 16px;
    text-align: left;
    font-weight: 500;
}

table tbody tr {
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

table tbody tr:hover {
    background-color: #f8fafc;
}

table td {
    padding: 16px;
    color: var(--main-black);
}

.table-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

table button {
    background-color: var(--main-color);
    color: var(--main-white);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

table button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px -3px rgba(0, 0, 0, 0.1);
}

table button.delete-btn {
    background-color: #ef4444;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        min-height: 120vh;
    }
    
    h2 {
        font-size: 18px;
        font-weight: 300;
        margin-top: 80px;
    }
    
    .user-actions form {
        flex-direction: column;
        padding: 16px;
    }
    
    table {
        border: none;
    }
    
    table thead {
        display: none;
    }
    
    table tbody tr {
        display: block;
        margin-bottom: 16px;
        border-radius: 8px;
        overflow: hidden;
        padding: 16px;
        box-shadow: var(--shadow);
    }
    
    table td {
        display: block;
        padding: 8px 16px;
        text-align: left;
        border: none;
    }
    
    .table-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    table button {
        width: 100%;
        padding: 10px;
        margin-top: 8px;
    }
}