.cc-window {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 24px;
    max-width: 420px;
    width: calc(100% - 48px);
    background: #ffffff;
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    z-index: 999999;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1px solid #f1f3f5;
}
.cc-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3e4db2;
    margin: 0;
}
.cc-description {
    font-size: 0.92rem;
    color: #495057;
    line-height: 1.5;
    margin: 0;
}
.cc-btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.cc-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    text-align: center;
}
.cc-btn-accept {
    background: #3e4db2;
    color: #ffffff;
}
.cc-btn-accept:hover {
    background: #2b3035;
}
.cc-btn-reject {
    background: #f1f3f5;
    color: #495057;
}
.cc-btn-reject:hover {
    background: #e9ecef;
}