/* Golden Yellow and Black Theme for Blog View */

body {
    background: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container-fluid {
    /*max-width: 1200px;*/
    margin: 0 auto;
    /*padding: 30px 20px;*/
}

.card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #ffffff;
}

.card-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #FFD700;
    padding: 20px 25px;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.card-header .btn {
    background: #FFD700 !important;
    color: #1a1a1a !important;
    border: none !important;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.card-header .btn:hover {
    background: #FFC700 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

.card-header b {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-body {
    padding: 35px 30px;
    background: #ffffff;
}

.card-body > p:first-child {
    font-size: 16px;
    line-height: 1.8;
    color: #2d2d2d;
    margin-bottom: 25px;
    text-align: justify;
}

hr {
    border: none;
    border-top: 2px solid #FFD700;
    margin: 30px 0 20px 0;
    opacity: 0.3;
}

.card-body > p > b {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.card-body > p > b::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #FFD700;
}

.table {
    margin-top: 20px;
    border-collapse: separate;
    border-spacing: 0;
}

.table tbody tr {
    background: #fafafa;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: #fff9e6;
    border-left-color: #FFD700;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.table tbody tr td {
    padding: 18px 20px;
    border: none;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.table tbody tr:last-child td {
    border-bottom: none;
}

.table tbody tr td:first-child b {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
}

.table tbody tr td:last-child a {
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.table tbody tr td:last-child a:hover {
    background: linear-gradient(135deg, #FFC700 0%, #FFB700 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container-fluid {
        padding: 15px 10px;
    }

    .card-header {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .card-header b {
        font-size: 20px;
    }

    .card-body {
        padding: 25px 20px;
    }

    .card-body > p:first-child {
        font-size: 15px;
    }

    .table tbody tr td {
        padding: 15px;
        display: block;
        text-align: left !important;
    }

    .table tbody tr td:last-child {
        margin-top: 10px;
    }

    .table tbody tr td:last-child a {
        display: inline-flex;
        width: fit-content;
    }
}

.rtl {
    direction: rtl;
    text-align: right;
}

.ltr {
    direction: ltr;
    text-align: left;
}


/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: #FFD700;
    color: #1a1a1a;
}

::-moz-selection {
    background: #FFD700;
    color: #1a1a1a;
}