/* Section Background */
.coming-soon-section {
    padding: 60px 0;
    background-color: #D9E6FF; /* Matches your theme background */
    position: relative;
    z-index: 0;
}

/* Header Styling */
.coming-soon-header {
    margin-bottom: 40px;
}

.cs-title {
    font-size: 2rem;
    font-weight: 800;
    color: #041e42;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.cs-divider {
    height: 3px;
    width: 60px;
    background-color: #cda85f; /* Gold accent */
    margin: 0 auto;
    border-radius: 2px;
}

/* List Wrapper Container */
.coming-soon-list-wrapper {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

/* Individual Row Styling */
.cs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #f0f0f0;
    border-left: 4px solid transparent; /* Prep for hover effect */
    transition: all 0.3s ease;
    background-color: #ffffff;
}

/* Alternating row color for slight contrast (optional, keeps it posh) */
.cs-row:nth-child(even) {
    background-color: #fcfdfe;
}

.cs-row:last-child {
    border-bottom: none;
}

/* Elegant Hover Effect */
.cs-row:hover {
    background-color: #ffffff;
    border-left: 4px solid #cda85f; /* Gold line appears on hover */
    box-shadow: 0 4px 15px rgba(4, 30, 66, 0.04);
    transform: translateX(2px); /* Slight nudge */
}

/* Company Info Column */
.cs-company-info {
    flex: 1;
    padding-right: 20px;
}

.cs-company-name {
    font-size: 1.4vw;
    font-weight: 700;
    color: #041e42;
    margin: 0;
    line-height: 1.3;
}

.cs-revenue-subtext {
    display: block;
    font-size:1.2vw;
    color: #666;
    font-style: italic;
    margin-top: 4px;
}

/* Status Column */
.cs-status-info {
    text-align: right;
    min-width: 220px;
}

.cs-status-badge {
    display: inline-block;
    background-color: #f4f6f9;
    color: #041e42;
    border: 1px solid #e1e5eb;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 1.1vw;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    min-width: 180px;
}

/* Alternate Badge Style for specific statuses */
.cs-status-badge.highlight {
    background-color: #041e42;
    color: #cda85f;
    border-color: #041e42;
}

/* Responsiveness */
@media (max-width: 767px) {
    .cs-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .cs-status-info {
        text-align: left;
        margin-top: 15px;
        min-width: 100%;
    }

    .cs-status-badge {
        min-width: auto;
        display: inline-block;
        font-size: 20px;
    }
    .cs-company-name{
        font-size: 20px;
    }
    .cs-revenue-subtext{
        font-size: 18px;
    }
}