/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #333;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    padding: 3rem 0 2rem;
    text-align: center;
}

.header-content {
    max-width: 600px;
    margin: 0 auto;
}

.logo {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

a {
    color: white;
    text-decoration: none;
}

.logo i {
    font-size: 2rem;
    color: #00ff88;
}

.subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Main Content */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 1rem 0;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.stat i {
    color: #00ff88;
    font-size: 1.1rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

/* Map Section */
.map-section {
    text-align: center;
}

.map-container {
    text-align: center;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #494949;
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-link:hover {
    background: #00ff88;
    color: #333;
    transform: translateY(-1px);
}

/* Peering Section */
.peering-section {
    text-align: center;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    min-width: 200px;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
}

.contact-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.email-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #00ff88;
}

/* Location Section */
.location-section {
    text-align: center;
}

.location-details {
    margin-top: 1.5rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

.detail-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-card.coming-soon {
    opacity: 0.6;
    filter: blur(1px);
    pointer-events: none;
    position: relative;
}

.detail-card.coming-soon::before {
    content: "Coming Soon";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #00ff88;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.detail-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.detail-header i {
    font-size: 1.2rem;
    color: #00ff88;
}

.flag-icon {
    width: 24px;
    height: 18px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.detail-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

.location-tag {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.detail-content {
    display: grid;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 44px;
}

.label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    min-width: 120px;
    font-size: 0.9rem;
    text-align: left;
    flex-shrink: 0;
}

.value {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    text-align: right;
    word-break: break-all;
    max-width: 200px;
    display: inline-block;
    line-height: 1.3;
}

.value:hover {
    background: rgba(0, 255, 136, 0.1) !important;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
}

/* Footer */
.footer {
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #00ff88;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .logo i {
        font-size: 2rem;
    }
    
    .hero {
        padding: 2rem 1.5rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .label {
        min-width: auto;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        min-width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Tablet and medium screens */
@media (min-width: 769px) and (max-width: 1200px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2rem;
    }
}

/* Large screens - optimize for 3+ locations */
@media (min-width: 1201px) {
    .locations-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 2.5rem;
        max-width: 1400px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-header h3 {
        font-size: 1.5rem;
    }
    
    .detail-card {
        padding: 1.5rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero, .map-section, .peering-section, .location-section {
    animation: fadeInUp 0.6s ease-out;
}

.hero {
    animation-delay: 0.1s;
}

.map-section {
    animation-delay: 0.2s;
}

.peering-section {
    animation-delay: 0.3s;
}

.location-section {
    animation-delay: 0.4s;
}

/* Hover Effects */
.contact-method, .detail-card {
    transition: all 0.3s ease;
}

.contact-method:hover, .detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* BGP Session Monitor Styles */
.bgp-container {
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

.bgp-header {
    padding: 3rem 0 2rem;
    text-align: center;
    background: transparent;
}

.bgp-header-content {
    max-width: 600px;
    margin: 0 auto;
}

.bgp-logo {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.bgp-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Status Bar */
.bgp-status-bar {
    background: rgba(255, 255, 255, 0.05) !important;
    padding: 1rem 1.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 2rem !important;
}

.bgp-refresh-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.bgp-last-update {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

.bgp-auto-refresh {
    color: #00ff88;
    font-size: 0.9em;
    font-weight: 500;
}

.bgp-refresh-btn {
    background: #00ff88;
    color: #333;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bgp-refresh-btn:hover {
    background: #00cc6a;
    transform: translateY(-1px);
}

/* BGP Content */
.bgp-content {
    margin-bottom: 2rem;
}

.bgp-error-message {
    background: rgba(220, 53, 69, 0.1);
    color: #ff6b6b;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(220, 53, 69, 0.3);
    text-align: center;
    font-size: 1.1em;
}

.bgp-no-sessions {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1em;
    padding: 3rem 2rem;
}

.bgp-no-sessions h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Session Grid */
.bgp-session-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.bgp-session-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    padding: 2rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    margin-bottom: 0 !important;
}

.bgp-session-card:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.bgp-session-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bgp-protocol-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

.bgp-state-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 500;
    text-transform: uppercase;
}

.bgp-state-up {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.bgp-state-down {
    background: rgba(220, 53, 69, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.bgp-state-start {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.bgp-state-other {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bgp-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9em;
    line-height: 1.4;
}

.bgp-description strong {
    color: rgba(255, 255, 255, 0.9);
}

.bgp-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bgp-details-list li {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.5rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
}

.bgp-details-list li:last-child {
    margin-bottom: 0;
}

/* BGP Loading */
.bgp-loading {
    text-align: center;
    padding: 3rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.bgp-spinner {
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #00ff88;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* BGP Debug section styling */
.bgp-debug details {
    margin-top: 1rem;
}

.bgp-debug summary {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin-bottom: 1rem;
}

.bgp-debug details pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.9);
}

/* BGP Responsive Design */
@media (max-width: 768px) {
    .bgp-session-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bgp-status-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .bgp-refresh-info {
        flex-direction: column;
        gap: 1rem;
    }
}

/* BGP Animations */
@keyframes bgpFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bgp-session-grid {
    animation: bgpFadeInUp 0.6s ease-out;
}

/* BGP Peer Detail Styles */
.bgp-peer-link {
    color: #00ff88;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.bgp-peer-link:hover {
    color: #00cc6a;
    transform: translateY(-1px);
}

.bgp-peer-link i {
    font-size: 0.8em;
    opacity: 0.7;
}

.bgp-navigation {
    display: flex;
    align-items: center;
}

.bgp-back-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.bgp-back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-1px);
}

.bgp-peer-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bgp-peer-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.bgp-peer-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
}

.bgp-peer-detail {
    display: grid;
    gap: 2rem;
}

.bgp-section-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bgp-raw-output {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bgp-output-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow-x: auto;
}

.bgp-output-text {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
    white-space: pre-wrap;
}

.bgp-parsed-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bgp-info-grid {
    display: grid;
    gap: 1.5rem;
}

.bgp-info-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bgp-section-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
}

.bgp-section-content {
    display: grid;
    gap: 0.75rem;
}

.bgp-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 44px;
}

.bgp-info-label {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    min-width: 120px;
    font-size: 0.9rem;
    text-align: left;
    flex-shrink: 0;
}

.bgp-info-value {
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: right;
    word-break: break-all;
    max-width: 300px;
    line-height: 1.3;
}

.bgp-info-values {
    display: grid;
    gap: 0.5rem;
    margin-top: 1rem;
}

.bgp-info-value-item {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive design for peer detail */
@media (max-width: 768px) {
    .bgp-status-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .bgp-info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .bgp-info-label {
        min-width: auto;
    }
    
    .bgp-info-value {
        text-align: left;
        max-width: 100%;
    }
    
    .bgp-peer-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Ensure BGP elements override any conflicting styles */
.bgp-header,
.bgp-status-bar,
.bgp-content,
.bgp-session-grid,
.bgp-session-card,
.bgp-error-message,
.bgp-no-sessions {
    background: transparent !important;
}

/* Force BGP button styling */
.bgp-refresh-btn {
    background: #00ff88 !important;
    color: #333 !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.bgp-refresh-btn:hover {
    background: #00cc6a !important;
    transform: translateY(-1px) !important;
}

/* Force BGP state badge styling */
.bgp-state-badge {
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    font-size: 0.8em !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
}

.bgp-state-up {
    background: rgba(0, 255, 136, 0.1) !important;
    color: #00ff88 !important;
    border: 1px solid rgba(0, 255, 136, 0.3) !important;
}

.bgp-state-down {
    background: rgba(220, 53, 69, 0.1) !important;
    color: #ff6b6b !important;
    border: 1px solid rgba(220, 53, 69, 0.3) !important;
}

.bgp-state-start {
    background: rgba(255, 193, 7, 0.1) !important;
    color: #ffc107 !important;
    border: 1px solid rgba(255, 193, 7, 0.3) !important;
}

.bgp-state-other {
    background: rgba(255, 255, 255, 0.1) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
} 