.button {
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* Renk Stili */
.button-primary {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ffffff;
}

.button-primary:hover {
    background-color: white;
    color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
}

/* Boyutlar */
.button-sm {
    padding: 4px 15px;
    font-size: 0.8rem;
}

.button-md {
    padding: 8px 25px;
    font-size: 0.9rem;
}

.button-lg {
    padding: 12px 35px;
    font-size: 1rem;
}


.line-break {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #d3cdcd;
    margin: 50px 0;
}

/* MODAL ARKAPLAN */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;     /* ✨ ÖNEMLİ: Maksimum yüksekliği sınırla */
    overflow-y: auto;     /* ✨ ÖNEMLİ: İçerik taşarsa dikey kaydır */
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.custom-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

.custom-close:hover {
    color: #000;
}

@media (max-width: 600px) {
    .custom-modal-content {
        margin-top: 10%;
        padding: 15px;
    }
}


.item-details {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.item-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 6px;
}

.item-label {
    flex: 1 1 150px;
    font-weight: bold;
    color: #333;
}

.item-value {
    flex: 2 1 300px;
    color: #555;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag {
    background-color: #007bff;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.85rem;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .item-row {
        flex-direction: column;
    }
    .item-label, .item-value {
        flex: 1 1 100%;
    }
}

.text-lowercase
{
    text-transform: lowercase !important;
}


.text-uppercase
{
    text-transform: uppercase !important;
}

.text-capitalize
{
    text-transform: capitalize !important;
}
