.transaction-details-container {
    padding: 1rem;
}

.transaction-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.transaction-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.transaction-date {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Status Styles */
.status-indicator {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.status-icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.status-text {
    font-weight: 600;
    font-size: 0.9rem;
}

.status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* Status Colors */
.status-success {
    /*background-color: #e8f5e9;*/
    color: #2e7d32;
    /*border: 1px solid #a5d6a7;*/
}

.status-danger {
    background-color: #fbe9e7;
    color: #c62828;
    border: 1px solid #ffab91;
}

.status-warning {
    background-color: #fff3e0;
    color: #ef6c00;
    border: 1px solid #ffe0b2;
}

.status-secondary {
    background-color: #eceff1;
    color: #455a64;
    border: 1px solid #cfd8dc;
}

.status-dot.status-success { background-color: #2e7d32; }
.status-dot.status-danger { background-color: #c62828; }
.status-dot.status-warning { background-color: #ef6c00; }
.status-dot.status-secondary { background-color: #455a64; }

/* Section Styles */
.transaction-info, .payment-info {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.info-item {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item:first-child {
    padding-top: 0;
}

.info-item .label {
    color: #6c757d;
    font-size: 0.875rem;
    font-weight: 500;
}

.info-item .value {
    font-weight: 600;
    color: #2c3e50;
}

/* Button Styles */
.btn-action {
    border-radius: 0.75rem;
    padding: 1rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-action i {
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.offcanvas-footer {
    border-top: 1px solid #e9ecef;
    background-color: #f8f9fa;
    padding: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .offcanvas {
        width: 100% !important;
    }
    
    .transaction-amount {
        font-size: 1.75rem;
    }

    .transaction-header {
        padding: 1.5rem;
    }

    .status-indicator {
        padding: 0.5rem 1rem;
    }
}

@media (min-width: 577px) {
    .offcanvas {
        width: 400px !important;
    }
}
