/*</spanp
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* Solution Plus Brand Colors */
:root {
    /* Primary Blue Palette */
    --primary-blue: #1a5fb4de;
    --secondary-blue: #3584e4;
    --light-blue: #99c1f1;
    --dark-blue: #1c71d8;

    /* Yellow & Gold Palette */
    --primary-yellow: #f6d32d;
    --secondary-yellow: #f9e75e;
    --accent-yellow: #ffbe6f;
    --gold: #e5a50a;

    /* Neutral & Support Colors */
    --dark-gray: #333333;
    --medium-gray: #666666;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --success: #00d1b2;
    --warning: #ffa726;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 30%, var(--secondary-blue) 50%);
    --gradient-primary-yellow: linear-gradient(135deg, var(--primary-yellow) 30%, var(--secondary-yellow) 50%);
    --gradient-accent: linear-gradient(135deg, var(--primary-yellow) 0%, var(--gold) 100%);
    --gradient-blue-yellow: linear-gradient(135deg, var(--primary-blue) 20%, var(--primary-yellow) 110%);
    --gradient-yellow-blue: linear-gradient(135deg, var(--primary-yellow) -10%, var(--secondary-blue) 90%);
    --gradient-light: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    --gradient-header: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--primary-yellow) 100%);

    /* Shadows */
    --shadow-light: 0 4px 12px rgba(26, 95, 180, 0.1);
    --shadow-medium: 0 6px 20px rgba(26, 95, 180, 0.15);
    --shadow-heavy: 0 10px 30px rgba(26, 95, 180, 0.2);
    --shadow-yellow: 0 4px 15px rgba(246, 211, 45, 0.25);
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
}

body {
    padding: 0px;
}

sedo-h1,
sedo-h2,
sedo-h3,
sedo-h4 {
    font-family: 'Barlow Condensed', sans-serif !important;
}

sedo-h4 {
    font-weight: 500 !important;
}

input {
    font-family: 'Barlow Condensed', sans-serif !important;
}

select {
    height: 56px !important;
}

.container {
    text-align: center;
    max-width: 600px;
}

.container sedo-h1 {
    color: #333;
    margin-bottom: 10px;
}

.container sedo-p {
    color: #666;
    line-height: 1.6;
}

/* Scrollbar Styling */
.chat-messages::-webkit-scrollbar,
.quick-actions-grid::-webkit-scrollbar {
    background: #f1f1f1;
    width: 10px;
}

.chat-messages::-webkit-scrollbar-track,
.quick-actions-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.chat-messages::-webkit-scrollbar-thumb,
.quick-actions-grid::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 5px;
}

.chat-messages::-webkit-scrollbar-thumb:hover,
.quick-actions-grid::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Touch feedback for mobile */
button.touch-active {
    -webkit-transform: scale(0.95) !important;
    -ms-transform: scale(0.95) !important;
    transform: scale(0.95) !important;
    opacity: 0.9 !important;
}

/* Remove tap highlight on iOS */
button {
    -webkit-tap-highlight-color: transparent;
}

@-webkit-keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    60% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    40% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    60% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 209, 178, 0.7);
        box-shadow: 0 0 0 0 rgba(0, 209, 178, 0.7);
    }

    70% {
        -webkit-box-shadow: 0 0 0 6px rgba(0, 209, 178, 0);
        box-shadow: 0 0 0 6px rgba(0, 209, 178, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 209, 178, 0);
        box-shadow: 0 0 0 0 rgba(0, 209, 178, 0);
    }
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 209, 178, 0.7);
        box-shadow: 0 0 0 0 rgba(0, 209, 178, 0.7);
    }

    70% {
        -webkit-box-shadow: 0 0 0 6px rgba(0, 209, 178, 0);
        box-shadow: 0 0 0 6px rgba(0, 209, 178, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(0, 209, 178, 0);
        box-shadow: 0 0 0 0 rgba(0, 209, 178, 0);
    }
}

@-webkit-keyframes slideUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slideDown {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}

@-webkit-keyframes slideInUp {
    from {
        -webkit-transform: translateY(100vh);
        transform: translateY(100vh);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        -webkit-transform: translateY(100vh);
        transform: translateY(100vh);
        opacity: 0;
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

@-webkit-keyframes messageAppear {
    from {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes messageAppear {
    from {
        opacity: 0;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}