@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.bg_layer {
    background-image: url(../images/bg_layer.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-top: 120px;
    border-radius: 40px;
    padding-bottom: 70px;
}
.product_head{
    padding-top: 120px;
    padding-left: 60px;
}
p.bg_para a {
    color: #000;
    text-decoration: none;
}
p.bg_para a:hover {
    color: #A12353;
}
.card.bg_card {
    margin-left: 60px;
    border-radius: 20px;
    width: 150px;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 10px;
    margin-top: 15px;
}
.bg_para {
    font-size: 12px;
    margin: 0;
    font-weight: 500;
}
.color_pink{
    color: #A12353;
}
/* The menu list */
.sidebar-menu {
list-style-type: none; 
margin: 0;
padding: 0;
}

/* Each menu item */
.sidebar-menu li {
background-color: #e0e0e0;
padding: 12px 15px;
cursor: pointer; 
transition: background-color 0.2s;
margin-bottom: 7px;
}

/* Hover effect on menu items */
.sidebar-menu li:hover {
background-color: #d3d3d3;
}

/* ======== ACTIVE LI STYLE ======== */
/* When a menu item is active (clicked), highlight it in orange with white text. */
.sidebar-menu li.active {
background-color: #ff8c00; /* orange */
color: #fff;
}

/* ======== MAIN CONTENT ======== */
.main-content {
padding: 20px;
}

/* ======== TAB CONTENT SECTIONS ======== */
.tabcontent {
display: none; 
}
.statich{
    font-size: 25px;
    color: #a41f52;
    margin-bottom: 15px;
    line-height: 38px;
    border-bottom: 1px solid #C8C8C8;
}
 /* ===== Table Container ===== */
.table-container {
width: 100%;
overflow-x: auto; /* scroll if table is too wide on small screens */
}

/* ===== Table Styles ===== */
table {
width: 100%;
border-collapse: collapse;
}

thead {
background-color: #a41d49; /* maroon/red header row */
color: #ffffff;           /* white text */
}

th, td {
padding: 12px 16px;       /* spacing around text */
text-align: left;         /* left-align columns */
vertical-align: middle;   /* center text vertically */
}

/* Optional: give the header row bold text */
th {
font-weight: bold;
}

/* ===== Row Hover (optional) ===== */
tbody tr:hover {
background-color: #f5f5f5; /* light gray on hover */
}

/* ===== Download Button ===== */
.download-btn {
background-color: #ff8c00; /* orange */
color: #ffffff;            /* white text */
border: none;
padding: 8px 16px;
cursor: pointer;
font-size: 14px;
border-radius: 4px;        /* slightly rounded corners (optional) */
transition: background-color 0.2s;
}

.download-btn:hover {
background-color: #e07b00; /* darker orange on hover */
}
.download-btn{
    font-size: 13px;
    padding: 8px 16px;
    text-align: center;
    background: #f59121;
    border: 1px solid #f59121;
    color: #FFF6F6;
    display: inline-block;
    transition: 0.3s all ease;
    text-decoration:none;
}
tbody tr:nth-child(n) {
    border-bottom: 1px dotted #ccc;
}
/* Mobile Select Menu - hidden by default */
.mobile-menu {
display: none;
margin-bottom: 20px;
}
.mobile-menu select {
    width: 100%;
    box-sizing: border-box; /* Ensures padding/border are included in the width */
  }
  
/* Media Queries for Mobile/Tablet */
@media (max-width: 768px) {
.sidebar {
    display: none;
}
.mobile-menu {
    display: block;
}
}

@media (min-width: 769px) {
.mobile-menu {
    display: none;
}
}
@media screen and (min-width: 320px) and (max-width: 395px) {  
    .product_head{
        padding-top: 120px;
        padding-left: 30px;
    }
    .card.bg_card {
        margin-left: 30px;
        border-radius: 20px;
        width: fit-content;
        text-align: center;
        display: flex;
        justify-content: center;
        padding: 10px;
        margin-top: 15px;
    }
    .bg_para {
        font-size: 11px;
        margin: 0;
        font-weight: 500;
    }
    .bg_para {
        font-size: 11px;
        margin: 0;
        font-weight: 500;
    }
}
@media screen and (min-width: 320px) and (max-width: 992px) {
    .bg_layer {
        background-image: url('../images/bg_layer_mobile.png');
        background-repeat: no-repeat;
        background-size: cover;
        margin-top: 80px;
        border-radius: 20px;
        padding-bottom: 70px;
    }
}