/* Opportunity Details Modal Styles */
/* Shared styles for opportunity details modal used across multiple pages */

/* Modal Content Styles */
.modern-modal-content {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.modal-header-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #0d6efd;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.section-header {
    display: flex;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
    color: #495057;
}

.section-header i {
    color: #0d6efd;
    font-size: 1.1rem;
}

.info-section {
    background: #fff;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.info-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 0.95rem;
    color: #212529;
    font-weight: 500;
    line-height: 1.4;
}

.contact-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

.badge {
    font-weight: 500;
    border-radius: 6px;
}

.briefing-section {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    border-radius: 8px;
    padding: 1.25rem;
    border-left: 4px solid #17a2b8;
    margin-bottom: 1rem;
}

.briefing-section .section-header {
    color: #0c5460;
    border-bottom-color: #bee5eb;
}

.briefing-section .section-header i {
    color: #17a2b8;
}

.documents-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    padding: 1.25rem;
    border-left: 4px solid #6c757d;
    margin-bottom: 1rem;
}

.documents-section .section-header {
    color: #495057;
    border-bottom-color: #dee2e6;
}

.documents-section .section-header i {
    color: #6c757d;
}

.document-item {
    background: #fff;
    border-radius: 6px;
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
}

.document-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-color: #0d6efd;
}

.document-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.document-link:hover {
    color: #0b5ed7;
    text-decoration: underline;
}

.document-date {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

