.add-to-cart{
    border: 2px solid #bb9a14 !important;
    border-radius: 6px !important;
    background: #000000 !important;
    color: #ffffff !important;
    padding: 10px 15px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.add-to-cart:hover{
    padding: 10px 15px !important;
    background-color: #ceaf3c !important;
    color: white !important;
    
}

.report-notification {
    background-color: #f7f7f7;
    padding: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #0073aa;
}

.reports-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.reports-table th, .reports-table td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.reports-table th {
    background-color: #f0f0f0;
}

.report-link{
    background: #bc9b15 !important;
    padding: 10px;
    color: white;
}
.report-link:hover{
color: white !important;
}
.package-inside{
display:flex !important;
justify-content:space-between;
align-items:center;
}
.package-name, .package-price{
margin:0 10px !important;

}
.package-name{
font-size:22px !important;
text-align:left;
}
.coin-package-item{
background-color: transparent !important;
border: 1px solid #ceaf3c !important;
border-radius:6px;
margin-bottom:30px;
}
.package-description{
margin-top:30px !important;
}

/* coin packages pop up */
   /* Modal styling */
   /* Overlay styles */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    z-index: 999; /* Ensure it covers other content */
    display: none; /* Hidden by default */
}

/* Modal styles */
#confirmationModal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the modal */
    background: #fff; /* White background */
    padding: 20px; /* Padding inside the modal */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow for depth */
    z-index: 1000; /* Ensure it is above the overlay */
    width: 300px; /* Fixed width */
    display: none; /* Hidden by default */
}

/* Modal heading */
#confirmationModal h2 {
    font-size: 22px;
    margin-top: 0; /* Remove default margin */
}

/* Button styles */
#confirmYes, #confirmNo {
    background-color: #ceaf3c; /* Bootstrap primary color */
    color: white; /* White text */
    border: none; /* No border */
    padding: 10px 15px; /* Padding */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor */
    margin: 5px; /* Space between buttons */
}

#confirmNo {
    background-color: #dc3545; /* Bootstrap danger color */
}

/* Button hover effects */
#confirmYes:hover, #confirmNo:hover {
    opacity: 0.9; /* Slightly transparent on hover */
}

/* responsive desing for packages  */
@media only screen and (max-width: 1100px){
    .coin-package-item{
        width: calc(50% - 20px) !important;
    }
}
@media only screen and (max-width: 562px){
    .coin-package-item{
        width: calc(100% - 20px) !important;
    }
}