/* Ask SG Page Styles */

/* Hero Section */
.ask-sg-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at top left, rgba(220, 20, 60, 0.02) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(178, 34, 34, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 8rem 0 4rem;
}

.ask-sg-hero-red-accent {
    position: absolute;
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-red) 50%, transparent 100%);
    opacity: 0.3;
    z-index: 0;
}

.ask-sg-hero-red-accent-1 {
    top: 20%;
    left: 10%;
    transform: rotate(-45deg);
    animation: accentPulse 3s ease-in-out infinite;
}

.ask-sg-hero-red-accent-2 {
    bottom: 25%;
    right: 15%;
    transform: rotate(45deg);
    animation: accentPulse 3s ease-in-out infinite 1.5s;
}

@keyframes accentPulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.2);
    }
}

.ask-sg-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.ask-sg-floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.ask-sg-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 20, 60, 0.08) 0%, transparent 70%);
    filter: blur(40px);
    animation: floatShape 20s ease-in-out infinite;
}

.ask-sg-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.ask-sg-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation-delay: -7s;
}

.ask-sg-shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.ask-sg-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.ask-sg-hero-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(220, 20, 60, 0.1);
    line-height: 1;
    margin-bottom: -2rem;
    letter-spacing: -0.05em;
}

.ask-sg-hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--primary-red) 0%, rgba(178, 34, 34, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ask-sg-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Chat Section */
.ask-sg-chat-section {
    padding: 4rem 0 6rem;
    background: 
        radial-gradient(ellipse at top right, rgba(220, 20, 60, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    min-height: 60vh;
}

.ask-sg-chat-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Avatar Container */
.ask-sg-avatar-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
    border: 2px solid rgba(220, 20, 60, 0.15);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.ask-sg-avatar {
    position: relative;
    flex-shrink: 0;
}

.ask-sg-avatar-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-red);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

.ask-sg-avatar-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.75rem;
    font-weight: 600;
}

.ask-sg-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4caf50;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

.ask-sg-status-text {
    color: var(--text-dark);
}

.ask-sg-avatar-info {
    flex: 1;
}

.ask-sg-avatar-name {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-red) 0%, rgba(178, 34, 34, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ask-sg-avatar-role {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Mood Indicator */
.ask-sg-mood-indicator {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 0.9) 100%);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ask-sg-mood-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
}

.ask-sg-mood-label {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ask-sg-mood-bar-container {
    position: relative;
    margin-bottom: 0.5rem;
}

.ask-sg-mood-bar {
    position: relative;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, #4caf50 0%, #ff9800 50%, #f44336 100%);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ask-sg-mood-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.ask-sg-mood-indicator-dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.4);
    transition: left 0.5s ease;
    z-index: 10;
}

.ask-sg-mood-value {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-top: 0.3rem;
}

/* Chat Container */
.ask-sg-chat-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.98) 100%);
    border: 2px solid rgba(220, 20, 60, 0.15);
    border-radius: 25px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 840px; /* 600px * 1.4 */
}

.ask-sg-messages {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ask-sg-messages::-webkit-scrollbar {
    width: 8px;
}

.ask-sg-messages::-webkit-scrollbar-track {
    background: rgba(220, 20, 60, 0.05);
    border-radius: 10px;
}

.ask-sg-messages::-webkit-scrollbar-thumb {
    background: rgba(220, 20, 60, 0.3);
    border-radius: 10px;
}

.ask-sg-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 20, 60, 0.5);
}

/* Messages */
.ask-sg-message {
    display: flex;
    gap: 1rem;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ask-sg-message-user {
    flex-direction: row-reverse;
}

.ask-sg-message-avatar {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-red);
}

.ask-sg-message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ask-sg-message-content {
    flex: 1;
    max-width: 70%;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ask-sg-message-user .ask-sg-message-content {
    align-items: flex-end;
}

.ask-sg-message-bubble {
    padding: 1rem 1.5rem;
    border-radius: 20px;
    line-height: 1.6;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
}

.ask-sg-message-sg .ask-sg-message-bubble {
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(178, 34, 34, 0.05) 100%);
    border: 2px solid rgba(220, 20, 60, 0.2);
    color: var(--text-dark);
    border-bottom-left-radius: 5px;
}

.ask-sg-message-user .ask-sg-message-bubble {
    background: linear-gradient(135deg, var(--primary-red) 0%, rgba(178, 34, 34, 0.9) 100%);
    color: white;
    border-bottom-right-radius: 5px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.ask-sg-message-bubble p {
    margin: 0;
    font-size: 1rem;
}

.ask-sg-message-time {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0 0.5rem;
}

/* Typing Indicator */
.ask-sg-typing-indicator {
    display: flex;
    gap: 1rem;
    padding: 1rem 2rem;
    align-items: center;
}

.ask-sg-typing-dots {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1) 0%, rgba(178, 34, 34, 0.05) 100%);
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 20px;
    border-bottom-left-radius: 5px;
}

.ask-sg-typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-red);
    animation: typingDot 1.4s ease-in-out infinite;
}

.ask-sg-typing-dots span:nth-child(1) {
    animation-delay: 0s;
}

.ask-sg-typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.ask-sg-typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDot {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

/* Input Container */
.ask-sg-input-container {
    padding: 1.5rem 2rem;
    border-top: 2px solid rgba(220, 20, 60, 0.1);
    background: rgba(250, 250, 250, 0.5);
}

.ask-sg-input-wrapper {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
}

.ask-sg-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(220, 20, 60, 0.2);
    border-radius: 20px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: white;
    resize: none;
    max-height: 150px;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.ask-sg-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(220, 20, 60, 0.1);
}

.ask-sg-input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.ask-sg-send-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red) 0%, rgba(178, 34, 34, 0.9) 100%);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
    flex-shrink: 0;
}

.ask-sg-send-btn:hover:not(:disabled) {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.4);
}

.ask-sg-send-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.ask-sg-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ask-sg-send-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.ask-sg-input-hint {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    text-align: center;
}

.ask-sg-warning-text {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.05) 100%);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    font-size: 0.85rem;
    color: #856404;
    text-align: center;
    line-height: 1.5;
}

.ask-sg-warning-text strong {
    color: #b8860b;
    font-weight: 700;
}

/* Warning Modal */
.ask-sg-warning-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.ask-sg-warning-modal.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.ask-sg-warning-modal-content {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 25px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 193, 7, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ask-sg-warning-modal-header {
    text-align: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid rgba(255, 193, 7, 0.2);
}

.ask-sg-warning-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
    animation: warningPulse 2s ease-in-out infinite;
}

@keyframes warningPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.ask-sg-warning-modal-header h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-dark);
    margin: 0;
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ask-sg-warning-modal-body {
    padding: 2rem;
    text-align: center;
}

.ask-sg-warning-modal-body p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0 0 1rem 0;
}

.ask-sg-warning-modal-body p:last-child {
    margin-bottom: 0;
}

.ask-sg-warning-modal-body strong {
    color: #b8860b;
    font-weight: 700;
}

.ask-sg-warning-modal-footer {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
    border-top: 2px solid rgba(255, 193, 7, 0.1);
}

.ask-sg-warning-modal-btn {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(255, 152, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ask-sg-warning-modal-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.ask-sg-warning-modal-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Responsive Design - Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .ask-sg-hero {
        padding: 7rem 0 3.5rem;
        min-height: 85vh;
    }
    
    .ask-sg-hero-number {
        font-size: 6rem;
    }
    
    .ask-sg-hero-title {
        font-size: 3.5rem;
    }
    
    .ask-sg-hero-subtitle {
        font-size: 1.15rem;
    }
    
    .ask-sg-chat-section {
        padding: 5rem 0;
    }
    
    .ask-sg-chat-wrapper {
        padding: 0 2rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .ask-sg-avatar-container {
        padding: 2rem;
    }
    
    .ask-sg-avatar-image {
        width: 120px;
        height: 120px;
    }
    
    .ask-sg-avatar-name {
        font-size: 1.8rem;
    }
    
    .ask-sg-chat-container {
        height: 770px; /* 550px * 1.4 */
    }
    
    .ask-sg-messages {
        padding: 2rem;
    }
    
    .ask-sg-message-content {
        max-width: 75%;
    }
    
    .ask-sg-input-container {
        padding: 1.2rem 2rem;
    }
    
    .ask-sg-warning-modal-content {
        max-width: 600px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ask-sg-hero {
        padding: 6rem 0 3rem;
        min-height: 80vh;
    }

    .ask-sg-hero-title {
        font-size: 3rem;
    }

    .ask-sg-hero-subtitle {
        font-size: 1.1rem;
    }

    .ask-sg-chat-section {
        padding: 3rem 0 4rem;
    }

    .ask-sg-chat-wrapper {
        padding: 0 1rem;
    }

    .ask-sg-avatar-container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .ask-sg-avatar-image {
        width: 100px;
        height: 100px;
    }

    .ask-sg-chat-container {
        height: calc(100vh - 250px);
        min-height: 700px; /* 500px * 1.4 */
        max-height: 980px; /* 700px * 1.4 */
        border-radius: 20px;
    }

    .ask-sg-messages {
        padding: 1.5rem 1rem;
        gap: 1.2rem;
    }

    .ask-sg-message {
        gap: 0.8rem;
    }

    .ask-sg-message-avatar {
        width: 40px;
        height: 40px;
    }

    .ask-sg-message-content {
        max-width: 85%;
        min-width: 120px;
    }

    .ask-sg-message-bubble {
        padding: 0.9rem 1.2rem;
        border-radius: 18px;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .ask-sg-message-bubble p {
        font-size: 0.95rem;
        line-height: 1.5;
        word-break: break-word;
    }

    .ask-sg-message-time {
        font-size: 0.7rem;
    }

    .ask-sg-input-container {
        padding: 1rem 1.2rem;
    }

    .ask-sg-input {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 18px;
    }

    .ask-sg-send-btn {
        width: 45px;
        height: 45px;
    }

    .ask-sg-warning-text {
        font-size: 0.75rem;
        padding: 0.6rem 0.8rem;
    }

    .ask-sg-warning-modal-content {
        max-width: 95%;
        margin: 1rem;
    }

    .ask-sg-warning-modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .ask-sg-warning-icon {
        font-size: 3rem;
    }

    .ask-sg-warning-modal-header h2 {
        font-size: 1.5rem;
    }

    .ask-sg-warning-modal-body {
        padding: 1.5rem;
    }

    .ask-sg-warning-modal-body p {
        font-size: 1rem;
    }

    .ask-sg-warning-modal-footer {
        padding: 1rem 1.5rem 1.5rem;
    }

    .ask-sg-warning-modal-btn {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .ask-sg-hero-number {
        font-size: 5rem;
    }

    .ask-sg-hero-title {
        font-size: 2.5rem;
    }

    .ask-sg-avatar-name {
        font-size: 1.5rem;
    }

    .ask-sg-chat-container {
        height: calc(100vh - 200px);
        min-height: 630px; /* 450px * 1.4 */
        max-height: 910px; /* 650px * 1.4 */
        border-radius: 18px;
    }

    .ask-sg-messages {
        padding: 1.2rem 0.8rem;
        gap: 1rem;
    }

    .ask-sg-message {
        gap: 0.6rem;
    }

    .ask-sg-message-avatar {
        width: 35px;
        height: 35px;
    }

    .ask-sg-message-content {
        max-width: 88%;
        min-width: 100px;
    }

    .ask-sg-message-bubble {
        padding: 0.8rem 1rem;
        border-radius: 16px;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .ask-sg-message-bubble p {
        font-size: 0.9rem;
        line-height: 1.4;
        word-break: break-word;
    }

    .ask-sg-message-time {
        font-size: 0.65rem;
    }

    .ask-sg-input-container {
        padding: 0.9rem 1rem;
    }

    .ask-sg-input {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        border-radius: 16px;
    }

    .ask-sg-send-btn {
        width: 42px;
        height: 42px;
    }

    .ask-sg-mood-indicator {
        padding: 0.7rem;
        margin-top: 0.7rem;
    }

    .ask-sg-mood-labels {
        font-size: 0.65rem;
    }

    .ask-sg-mood-bar {
        height: 8px;
    }

    .ask-sg-mood-indicator-dot {
        width: 16px;
        height: 16px;
    }

    .ask-sg-mood-value {
        font-size: 0.8rem;
    }

    .ask-sg-warning-text {
        font-size: 0.7rem;
        padding: 0.5rem 0.7rem;
    }

    .ask-sg-warning-modal-content {
        max-width: 95%;
        margin: 0.5rem;
    }

    .ask-sg-warning-modal-header {
        padding: 1.2rem 1.2rem 0.8rem;
    }

    .ask-sg-warning-icon {
        font-size: 2.5rem;
    }

    .ask-sg-warning-modal-header h2 {
        font-size: 1.3rem;
    }

    .ask-sg-warning-modal-body {
        padding: 1.2rem;
    }

    .ask-sg-warning-modal-body p {
        font-size: 0.9rem;
    }

    .ask-sg-warning-modal-footer {
        padding: 1rem 1.2rem 1.2rem;
    }

    .ask-sg-warning-modal-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
    }
}


