/* Sales page styles */
.sales-hero {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 4rem 0;
    margin-bottom: 2rem;
}

.sales-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.sales-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.sales-card .card-body {
    padding: 1.5rem;
}

.sales-card .card-title {
    color: #28a745;
    font-weight: 600;
    margin-bottom: 1rem;
}

.sales-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(40, 167, 69, 0.1);
    margin-right: 1rem;
    color: #28a745;
}

.sales-section {
    margin-bottom: 3rem;
}

.sales-section:last-child {
    margin-bottom: 0;
}

/* Hide numbers in commission structure */
.commission-amount {
    position: relative;
}

.commission-amount::after {
    content: "$$$";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #28a745;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.commission-amount:hover::after {
    opacity: 0.7;
}

/* Hide specific commission amounts in list items */
.commission-detail {
    position: relative;
}

.commission-detail::after {
    content: "$$$";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #28a745;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.commission-detail:hover::after {
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .sales-hero {
        padding: 3rem 0;
    }
    
    .sales-card {
        margin-bottom: 1rem;
    }
    
    .sales-icon {
        width: 40px;
        height: 40px;
    }
} 