#call-request-icon {
    position: fixed;
    bottom: 120px;
    right: 55px;
    z-index: 99;
    transition: transform 0.3s ease;
}

#call-request-icon:hover {
    transform: scale(1.1);
}

#call-request-icon .dashicons {
    font-size: 50px;
    color: #286fa1;
    cursor: pointer;
    transition: color 0.3s ease;
}

#call-request-window {
    position: fixed;
    bottom: 150px;
    right: 30px;
    width: 360px;
    height: 600px;
    background: #fff;
    border: 1px solid #e1e5e8;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
    z-index: 100;
    overflow: hidden;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    transform: translateY(8px);
    opacity: 0;
    animation: fadeInUp 0.35s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#call-request-window-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0077C8 0%, #003057 100%);
    color: white;
    position: relative;
}

#call-request-window-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
}

#call-request-window-header .call-request-window-header-text {
    color: white;
    font-weight: 600;
    font-size: 17px;
    margin: 0;
    letter-spacing: 0.3px;
}

#call-request-window-header .call-request-window-header-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    border-radius: 50%;
    width: 32px;
    height: 32px;
}

#call-request-window-header .call-request-window-header-button:hover {
    transform: scale(1.5);
}

#call-request-window-header .call-request-window-header-button .dashicons {
    font-size: 18px;
    padding-top: 3px;
    color: white;
    transition: transform 0.25s ease;
}

#call-request-window-body {
    flex: 1;
    padding: 18px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background-color: #f8fafc;
    scroll-behavior: smooth;
    overscroll-behavior: contain;
}

#call-request-window-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    transition: opacity 0.3s ease;
}

.call-request-title {
    display: block;
    font-size: 24px;
    font-weight: 700;
    margin: 5px 0;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
}

.call-request-window-footer-submit-button {
    background: linear-gradient(135deg, #0077C8 0%, #003057 100%);
    color: white;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 14px;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.25s ease;
    font-size: 15px;
    font-weight: 500;
    padding-bottom: 10px;
}

.request-window-select {
    margin-top: 15px;
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    #call-request-window {
        width: calc(100% - 50px);
        height: 70vh;
        bottom: 150px;
        right: 25px;
        border-radius: 16px;
    }
}