﻿#resultSection {
    position: fixed;
    top: 160px;
    left: 10px;
    right: 10px;
    padding: 12px;
    border-radius: 12px;
    background-color: #fff;
    z-index: 2000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.account-style-three {
    padding-top: 200px;
}

.result-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.soft-card {
    background: #f9fafc;
    border-radius: 12px;
    padding: 15px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

    .soft-card:hover {
        transform: translateY(-3px);
    }

.label {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 6px;
}

.total-amount {
    font-size: 2rem;
    font-weight: 700;
}

    .total-amount.buy {
        color: #3498db;
    }

    .total-amount.sell {
        color: #27ae60;
    }

.gold-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .gold-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

.gold-card-header {
    background-color: #d4af37;
    color: white;
    padding: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
}

.gold-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gold-icon {
    height: 130px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .gold-icon img {
        max-height: 100%;
        width: auto;
        object-fit: contain;
    }

    .gold-icon i {
        color: #d4af37;
    }

.price-info {
    margin-top: 10px;
    font-size: 0.9rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    background-color: #d4af37;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .quantity-btn:hover {
        background-color: #bf9b30;
    }

.quantity-input {
    margin: 0 8px;
    width: 70px;
    text-align: center;
    font-weight: bold;
    border-radius: 6px;
}

.badge {
    font-size: 15px;
}

.total-text {
    font-size: 30px;
    color: #000;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input {
    -moz-appearance: textfield;
    text-align: center;
}

/* Sıfırlama butonu stilleri */
.reset-btn-container {
    text-align: center;
    margin-top: 15px;
}

.reset-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .reset-btn:hover {
        background-color: #c0392b;
        transform: translateY(-2px);
    }

    .reset-btn i {
        margin-right: 8px;
    }

@media (max-width: 768px) {
    .account-style-three {
        padding-top: 160px;
    }

    #resultSection {
        top: 90px;
        padding: 8px;
    }

    .result-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .row.g-3.text-center {
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }

        .row.g-3.text-center .col-md-6 {
            flex: 1;
            max-width: 48%;
            margin-bottom: 0;
        }

    .soft-card {
        padding: 0px;
        border-radius: 10px;
    }

    .total-text {
        font-size: 16px;
    }

    .total-amount {
        font-size: 1.2rem;
    }

    .reset-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}
