.efp-login-container, .efp-main-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.efp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007cba;
}

.efp-form {
    background: white;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.efp-field {
    margin-bottom: 15px;
}

.efp-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.efp-field input,
.efp-field select,
.efp-field textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.efp-field input:focus,
.efp-field select:focus,
.efp-field textarea:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 5px rgba(0,124,186,0.3);
}

.efp-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.efp-btn-primary {
    background: #007cba;
    color: white;
}

.efp-btn-secondary {
    background: #6c757d;
    color: white;
}

.efp-btn-success {
    background: #28a745;
    color: white;
}

.efp-btn:hover {
    opacity: 0.9;
}

.efp-alert {
    padding: 10px;
    margin: 10px 0;
    border-radius: 4px;
}

.efp-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.efp-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.efp-table-container {
    margin-top: 30px;
}

.efp-table-wrapper {
    overflow-x: auto;
    max-height: 400px;
    overflow-y: auto;
}

.efp-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.efp-table th,
.efp-table td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.efp-table th {
    background: #007cba;
    color: white;
    position: sticky;
    top: 0;
}

.efp-table tr:nth-child(even) {
    background: #f8f9fa;
}

.efp-table tr:hover {
    background: #e9ecef;
}