/* Premium Feature Banner */
.premium-card {
    position: relative;
    overflow: hidden;
}

.premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-color: rgba(0, 0, 0, 0.2);*/
    z-index: 4;
}

/* Ribbon style banner */
/*.premium-banner {*/
/*    position: absolute;*/
/*    top: 20px;*/
/*    right: -60px;*/
/*    transform: rotate(45deg);*/
/*    transform-origin: center;*/
/*    background-color: #f45b69;*/
/*    color: white;*/
/*    padding: 5px 0;*/
/*    width: 200px;*/
/*    text-align: center;*/
/*    font-weight: bold;*/
/*    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);*/
/*    z-index: 5;*/
/*}*/


.premium-banner {
    position: absolute;
    top: 100px;
    right: 100px;
    background-color: #f45b69;
    color: white;
    padding: 5px 10px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    z-index: 5;
    border-bottom-left-radius: 4px;
}


.premium-upgrade-btn {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 6;
}

.premium-upgrade-btn a {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

.premium-upgrade-btn a:hover {
    background-color: #45a049;
}

/* Media queries for responsive behavior */
@media (max-width: 768px) {
    .premium-banner {
        width: 180px;
        right: -50px;
        top: 15px;
    }
}

@media (max-width: 576px) {
    .premium-banner {
        width: 160px;
        right: -45px;
        top: 12px;
    }
}