body {
    background: #f7f7f7;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #222;
}
.container {
    max-width: 1100px;
    margin: 30px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 32px 28px 32px 28px;
}
h1, h2 {
    font-weight: 700;
    margin-top: 0;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.header h1 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}
.header-actions {
    display: flex;
    gap: 10px;
}
.search-input {
    padding: 7px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}
.search-btn, .logout-btn, .back-btn, .edit-btn, .add-btn {
    background: #ffb300;
    border: none;
    color: #fff;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    margin-right: 8px;
    display: inline-block;
}
.search-btn:hover, .logout-btn:hover, .back-btn:hover, .edit-btn:hover, .add-btn:hover {
    background: #ff9800;
    color: #fff;
}
.table-responsive {
    overflow-x: auto;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 18px;
    background: #fff;
    box-shadow: 0 1px 4px #0001;
    border-radius: 8px;
    overflow: hidden;
}
th, td {
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
    text-align: left;
    font-size: 1rem;
}
th {
    background: #f5f5f5;
    font-weight: 600;
}
tr:last-child td {
    border-bottom: none;
}
.status.active {
    background: #e6f9e6;
    color: #1ca21c;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.95em;
    font-weight: 500;
}
.edit-btn {
    background: #2196f3;
    color: #fff;
    margin-right: 4px;
}
.edit-btn:hover {
    background: #1769aa;
}
.add-btn {
    background: #43a047;
    color: #fff;
    margin-bottom: 18px;
}
.add-btn:hover {
    background: #2e7031;
}
.logout-btn {
    float: right;
    background: #c62828;
    color: #fff;
}
.logout-btn:hover {
    background: #8e1919;
}
.profile-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.profile-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0001;
    padding: 18px 16px;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
}
.profile-img, .profile-img-list {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    background: #eee;
    margin-bottom: 10px;
}
.profile-img-large {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
    background: #eee;
    margin-bottom: 18px;
}
.ilan-form {
    margin-top: 18px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px #0001;
    padding: 24px 28px;
}
.form-row {
    display: flex;
    gap: 18px;
    margin-bottom: 14px;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}
.form-group label {
    font-weight: 500;
    margin-bottom: 5px;
}
.form-group input[type="text"],
.form-group input[type="number"],
.form-group input[type="datetime-local"],
.form-group select,
.form-group textarea {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    margin-bottom: 2px;
}
.form-group input[type="file"] {
    margin-bottom: 4px;
}
.form-group textarea {
    resize: vertical;
}
.form-actions {
    display: flex;
    justify-content: flex-end;
}
.submit-btn {
    background: #2196f3;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.submit-btn:hover {
    background: #1769aa;
}
@media (max-width: 800px) {
    .container {
        padding: 12px 4px;
    }
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .profile-list {
        flex-direction: column;
        align-items: center;
    }
    .profile-card {
        width: 95%;
    }
    table, thead, tbody, th, td, tr {
        display: block;
    }
    th, td {
        padding: 10px 6px;
    }
} 