/* assets/emanet-iade-stok-eslestir.css */

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Alanı */
.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    border-left: 5px solid #8b5cf6; /* Mor vurgu */
}

.page-header h1 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0;
}

.btn-back {
    background: #f1f5f9;
    color: #64748b;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
    border: 1px solid #e2e8f0;
}
.btn-back:hover {
    background: #e2e8f0;
    color: #334155;
}

/* Bilgi Kutusu */
.info-box {
    background: #fdf4ff; /* Açık mor/pembe */
    border: 1px solid #f0abfc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.info-box .icon {
    background: #d946ef;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.info-box h3 {
    margin: 0 0 10px 0;
    color: #86198f;
    font-size: 1.1rem;
}
.info-box p {
    margin: 0 0 5px 0;
    color: #701a75;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Grid Layout */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 25px;
}

@media (max-width: 900px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
}

/* Kartlar */
.card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    overflow: hidden;
}

.card-header {
    background: #f8fafc;
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
}
.card-header h2 {
    margin: 0;
    font-size: 1.1rem;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-body {
    padding: 25px;
}

/* Form Elemanları */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #475569;
    font-size: 0.9rem;
}
.form-group select, 
.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: 0.2s;
    color: #334155;
}
.form-group select:focus,
.form-group input:focus {
    border-color: #8b5cf6;
    outline: none;
}

.input-big {
    font-size: 1.1rem !important;
    font-weight: 600;
    color: #7c3aed !important;
    background: #f5f3ff;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Ok Bölücü */
.arrow-divider {
    text-align: center;
    margin: 15px 0;
    color: #cbd5e1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.arrow-divider span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    background: #f8fafc;
    padding: 4px 10px;
    border-radius: 12px;
}

/* Buton */
.btn-save {
    width: 100%;
    background: #8b5cf6;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-save:hover {
    background: #7c3aed;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

/* Tablo */
.match-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}
.match-table th {
    text-align: left;
    color: #94a3b8;
    font-size: 0.85rem;
    padding: 0 10px;
    text-transform: uppercase;
}
.match-table td {
    background: #fff;
    padding: 15px;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}
.match-table td:first-child {
    border-left: 1px solid #f1f5f9;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.match-table td:last-child {
    border-right: 1px solid #f1f5f9;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.visible-name {
    font-weight: 700;
    color: #7c3aed;
    font-size: 1.05rem;
}
.real-name {
    font-weight: 500;
    color: #475569;
    font-size: 0.95rem;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
}
.note-text {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 4px;
    font-style: italic;
}

.arrow-cell {
    color: #cbd5e1;
    font-size: 1.2rem;
    text-align: center;
}

.btn-delete {
    color: #ef4444;
    background: #fef2f2;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.2s;
}
.btn-delete:hover {
    background: #ef4444;
    color: white;
}

.empty-state {
    text-align: center;
    padding: 40px;
    color: #cbd5e1;
}
.empty-state i {
    font-size: 3rem;
    margin-bottom: 15px;
}