/* Tax Process Specific Styles */
.tax-header {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.tax-marquee {
    background: linear-gradient(90deg, #f8f9fc, #e9ecef);
    border-radius: 10px;
    padding: 10px;
    overflow: hidden;
}

.tax-marquee .marquee-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

.tax-workflow {
    position: relative;
    padding: 20px 0;
}

.tax-step-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    transition: all 0.3s ease;
    background-color: white;
}

.tax-step-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.tax-step-header {
    background: linear-gradient(90deg, #2c3e50, #4a6491);
    color: white;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tax-step-body {
    padding: 20px;
}

.tax-step-icon {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.tax-connector {
    height: 25px;
    width: 2px;
    background: linear-gradient(to bottom, #4a6491, #3498db);
    margin-left: 50%;
    margin-bottom: -5px;
    position: relative;
}

.tax-connector::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #3498db;
    border-radius: 50%;
    left: -5px;
    top: -12px;
}

.tax-info-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 100%;
}

.tax-info-header {
    background: linear-gradient(90deg, #2c3e50, #4a6491);
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tax-info-header.bg-success {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.tax-info-body {
    padding: 20px;
    background-color: white;
}

.tax-shares-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.tax-share-item {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tax-share-item:hover {
    transform: translateX(5px);
    background-color: #e9ecef;
}

.tax-share-badge {
    background-color: #f39c12;
    color: #000;
    font-weight: 600;
}

.btn-outline-govt {
    border-color: #2c3e50;
    color: #2c3e50;
}

.btn-outline-govt:hover {
    background-color: #2c3e50;
    color: white;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

@media (max-width: 768px) {
    .tax-connector {
        margin-left: 30px;
    }
}