﻿/* Style for Dynasties List */
body {
    font-family: 'Tahoma', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    padding-top: 0 !important; /* ✅ حذف فضای اضافی */
}

header {
    margin-bottom: 5px !important;
}

h1 {
    color: #2d2d2d;
    text-align: center;
    margin-top: 5px; /* ✅ کاهش فضای خالی */
    margin-top: 0.1rem !important; /* ✅ کاهش فضای خالی */
}

.navbar-nav .nav-item a {
    cursor: pointer; /* ✅ نشانگر موس را به دست تبدیل می‌کند */
}

.navbar-nav .nav-item i {
    margin-right: 5px; /* ✅ فاصله مناسب برای آیکون */
}

main, section, .container {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


.table {
    width: 100%;
    margin: 20px auto;
    border-collapse: collapse;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
}

    .table th, .table td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .table th {
        background-color: #2e6da4;
        color: white;
    }

    .table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .table a {
        text-decoration: none;
        color: white;
        padding: 6px 12px;
        border-radius: 4px;
    }

    .table .btn-warning {
        background-color: #f0ad4e;
    }

    .table .btn-danger {
        background-color: #d9534f;
    }

    .table .btn-primary {
        background-color: #5bc0de;
    }

    .table .btn:hover {
        opacity: 0.8;
    }

.short-description {
    cursor: pointer;
    color: blue;
    text-decoration: underline;
}


.cart-badge {
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -5px;
    right: -10px;
    z-index: 10;
}

.wikipedia-link i {
    color: #000; /* سیاه برای دیده شدن بهتر، یا #007bff برای آبی */
}



/*SweetAlert2 در موبایل ریسپانسیو */
.swal2-mobile-responsive {
    width: 90% !important;
}

@media (max-width: 576px) {
    .swal2-mobile-responsive {
        width: 95% !important;
        padding: 1rem !important;
        font-size: 0.95rem !important;
    }

        .swal2-mobile-responsive .swal2-title {
            font-size: 1.4rem !important;
        }
}



