.ccp-popup {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    box-sizing: border-box;
    transition: all 0.3s ease;
    top: 50%;
    left: 50%;
    border-radius: 0;
    transform: translate(-50% ,-50%);
    -webkit-transform: translate(-50% ,-50%);
    -moz-transform: translate(-50% ,-50%);
    -ms-transform: translate(-50% ,-50%);
    -o-transform: translate(-50% ,-50%);
}

.ccp-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    background-color: #ffff;
    padding: 40px 40px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    border: 1px solid #ddd;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.ccp-message {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: #2c3338;
}

.ccp-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
}
.ccp-button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    line-height: 1.5;
}

.ccp-accept {
    background: #f59733;
    color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
     transition: all 0.4s ease-in-out;
   -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
}

.ccp-accept:hover {
    background: #cf7719;
}

.ccp-decline {
   background: #f54949;
   color: #fff;
   box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
   transition: all 0.4s ease-in-out;
   -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
}

.ccp-decline:hover {
    background: #ee3434;
}

.ccp-terms {
    margin-top: 5px;
}

.ccp-terms-link {
    font-size: 12px;
    color: #007cba;
    text-decoration: none;
}

.ccp-terms-link:hover {
    text-decoration: underline;
    color: #005a87;
}

/* Responsive design */
@media (max-width: 768px) {
    .ccp-popup {
        padding: 15px;
    }
    
    .ccp-bottom-left,
    .ccp-bottom-right {
        left: 15px;
        right: 15px;
        max-width: none;
        bottom: 15px;
    }
    
    .ccp-buttons {
        flex-direction: column;
    }
    
    .ccp-button {
        width: 100%;
        text-align: center;
    }
}