﻿/* Genel Kart Stilleri */
.card {
    background: linear-gradient(135deg, #f8f9fa, #e6e9ec);
    border-radius: 15px;
    margin-bottom: 20px;
}

.card-header {
    background: linear-gradient(90deg, #28a745, #218838);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    text-align: center;
}

/* Sorgulama Kartı Stilleri */
.card-input {
    width: 100%; /* Genişliği artırıldı */
    height: 55px; /* Yüksekliği artırıldı */
    font-size: 1.6rem; /* Yazı boyutu artırıldı */
    font-weight: bold;
    border: 2px solid #6c757d;
    border-radius: 10px;
    outline: none;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    text-align: center;
}

    .card-input:focus {
        border-color: #28a745;
        box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
    }

.plate-input {
    width: 150px;
    height: 50px;
    text-align: center;
    font-size: 18px;
    border: 2px solid #6c757d;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

    .plate-input:focus {
        border-color: #28a745;
        box-shadow: 0 4px 6px rgba(40, 167, 69, 0.3);
        outline: none;
    }

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .card-input {
        width: 100%; /* Küçük ekranlarda genişlik daraltıldı */
        height: 45px; /* Küçük ekranlarda yükseklik daraltıldı */
        font-size: 1.1rem; /* Yazı boyutu küçültüldü */
    }
    .time-value {
        font-size: 1.3rem !important;
        font-weight: bold;
        color: #28a745;
    }



}

@media (max-width: 370px) {
    .card-input {
        width: 100%; /* Küçük ekranlarda genişlik daraltıldı */
        height: 40px; /* Küçük ekranlarda yükseklik daraltıldı */
        font-size: 1rem; /* Yazı boyutu küçültüldü */
    }

    .time-value {
        font-size: 1.2rem !important;
        font-weight: bold;
        color: #28a745;
    }

    .time-block {
        width: 70px !important;
        height: 70px !important;
    }

    .time-label {
        font-size: 0.8rem !important;
    }
}
/* Garanti Bilgiler Kartı Stilleri */
.countdown {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    text-align: center;
}

.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background-color: #fff;
    border: 2px solid #28a745;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

    .time-block:hover {
        transform: translateY(-5px);
    }

.time-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #28a745;
}

.time-label {
    font-size: 1rem;
    font-weight: normal;
    color: #6c757d;
    margin-top: 5px;
}

.text-muted {
    color: #6c757d !important;
}

/* Sorgula Butonu Stili */
.btn-danger {
    background-color: #dc3545;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

    .btn-danger:hover {
        background-color: #c82333;
        transform: scale(1.05);
    }
