/* Approval Request Page Styles */
.approval-request-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.approval-info-section {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e5e5;
}

.platform-interest-section {
    margin-bottom: 2rem;
}

.interest-options {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
}

.interest-option {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.interest-option:hover {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.interest-option input[type="radio"] {
    margin-right: 0.5rem;
}

.interest-option label {
    cursor: pointer;
    width: 100%;
    margin: 0;
}

.interest-option strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.interest-option p {
    margin: 0;
    color: #6c757d;
}

.additional-info-section {
    margin-bottom: 2rem;
}

.additional-info-section textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    resize: vertical;
}

.char-count {
    display: block;
    text-align: right;
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.submission-section {
    margin-top: 2rem;
}

.submit-btn {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.submit-btn:hover {
    background-color: #0069d9;
}

.submit-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.approval-notice {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-left: 4px solid #007bff;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #495057;
}

/* Pending Approval Page Styles */
.pending-approval-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
}

.pending-approval-card {
    max-width: 600px;
    padding: 3rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pending-icon {
    font-size: 4rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.pending-message {
    margin: 2rem 0;
}

.approval-time {
    margin-top: 1rem;
    font-weight: bold;
    color: #495057;
}

.contact-info {
    margin: 2rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.logout-btn {
    display: inline-block;
    background-color: transparent;
    color: #6c757d;
    padding: 0.5rem 1.5rem;
    border: 1px solid #6c757d;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background-color: #6c757d;
    color: #fff;
}

/* Admin Approval Interface Styles */
.admin-approval-container {
    padding: 2rem;
}

.admin-approval-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.pending-users-count {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    border-radius: 20px;
    font-weight: bold;
    color: #007bff;
}

.approval-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

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

.approval-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.approval-table tr:hover {
    background-color: #f8f9fa;
}

.approval-actions {
    display: flex;
    gap: 0.5rem;
}

.approve-btn {
    padding: 0.5rem 1rem;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.approve-btn:hover {
    background-color: #218838;
}

.reject-btn {
    padding: 0.5rem 1rem;
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.reject-btn:hover {
    background-color: #c82333;
}

.details-btn {
    padding: 0.5rem 1rem;
    background-color: #6c757d;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.details-btn:hover {
    background-color: #5a6268;
}

.user-details-modal {
    max-width: 600px;
}