/* UMinho Web Chat - Modern Red Interface */
:root {
    --uminho-primary: #870D14;
    --uminho-primary-dark: #870D14;
    --uminho-primary-light: #E85A73;
    --uminho-bg-light: #E9E9E9;
    --uminho-bg-lighter: #FBFBFB;
    --uminho-text-dark: #0d0d0d;
    --uminho-text-light: #718096;
    --uminho-border: #E2E8F0;
    --uminho-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --uminho-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Modern typing indicator */
.gcloud-chat-message-waiting-container {
    margin: 12px 16px;
    padding: 12px 16px;
    max-width: 80%;
    background: var(--uminho-bg-lighter);
    border-radius: 18px 18px 18px 4px;
    border: 1px solid var(--uminho-border);
    box-shadow: var(--uminho-shadow);
    align-self: flex-start;
}

.gcloud-chat-message-waiting-dots {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gcloud-chat-message-waiting-dots span {
    width: 8px;
    height: 8px;
    background: var(--uminho-primary);
    border-radius: 50%;
    animation: typing-pulse 1.4s infinite ease-in-out;
}

.gcloud-chat-message-waiting-dots .gcloud-chat-message-waiting-dot-1 {
    animation-delay: 0s;
}

.gcloud-chat-message-waiting-dots .gcloud-chat-message-waiting-dot-2 {
    animation-delay: 0.2s;
}

.gcloud-chat-message-waiting-dots .gcloud-chat-message-waiting-dot-3 {
    animation-delay: 0.4s;
}

@keyframes typing-pulse {
    0%, 60%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    30% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Scrollbar styling */
div.gcloud-chat-body::-webkit-scrollbar {
	width: 4px;
}

div.gcloud-chat-body::-webkit-scrollbar-track {
	background: white;
}

div.gcloud-chat-body::-webkit-scrollbar-thumb {
    background: var(--uminho-primary);
    border-radius: 3px;
    transition: background 0.2s ease;
}

div.gcloud-chat-body::-webkit-scrollbar-thumb:hover {
    background: var(--uminho-primary-dark);
}

div.gcloud-chat-body-first::-webkit-scrollbar {
    width: 6px;
}

div.gcloud-chat-body-first::-webkit-scrollbar-track {
    background: var(--uminho-bg-light);
    border-radius: 3px;
}

div.gcloud-chat-body-first::-webkit-scrollbar-thumb {
    background: var(--uminho-primary);
    border-radius: 3px;
    transition: background 0.2s ease;
}

div.gcloud-chat-body-first::-webkit-scrollbar-thumb:hover {
    background: var(--uminho-primary-dark);
}

/* Launcher message */
.gcloud-launcher-message {
    display: none;
    position: fixed;
    bottom: 108px;
    right: 30px;
    z-index: 999999999;
    animation: slideInUp 0.3s ease-out;
}

.gcloud-launcher-message-text {
    background: var(--uminho-primary);
    color: white;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    padding: 14px 18px;
    border-radius: 20px;
    box-shadow: var(--uminho-shadow-lg);
    max-width: 280px;
    font-family: 'Roboto', 'Segoe UI', system-ui, sans-serif;
}

.gcloud-launcher-message-pointer {
    width: 0;
    height: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    top: -2px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--uminho-primary);
}

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

/* Modern launcher button */
.gcloud-launcher-button {
    position: fixed;
    bottom: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
    border: none;
    display: none;
    padding: 0;
    background: var(--uminho-primary);
    border-radius: 50%;
    color:#494949;
    z-index: 99999;
    cursor: pointer;
    box-shadow: var(--uminho-shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gcloud-launcher-button:hover {
    transform: scale(1.05);
    background: var(--uminho-primary-dark);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.gcloud-launcher-button:active {
    transform: scale(0.95);
}

.gcloud-launcher-button svg {
    width: 28px;
    height: 28px;
    margin: auto;
}

.gcloud-launcher-button svg path.gcloud-launcher-button-path {
    fill: white;
    transition: fill 0.2s ease;
}

/* Unread messages indicator */
.gcloud-launcher-unread-messages {
    position: fixed;
    bottom: 80px;
    right: 35px;
	display: none;
    z-index: 99999;
}

.gcloud-launcher-unread-messages-text {
    background-color: #C63A38;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 15.6px;
    height: 16px;
    width: 16px;
    border: none;
    border-radius: 100px;
    text-align: center;
}

/* Chat window container */
.gcloud-chat-window-container {
	position: fixed;
	bottom: 110px;
	right: 30px;
	width: 40%;
	max-width: 480px;
	height: 80%;
	max-height: 720px;
	border-radius: 20px 20px 0px 20px;
	display: none;
	justify-content: flex-end;
	align-items: flex-end;
	z-index: 99999;
	box-shadow: 0 8px 32px rgba(30, 58, 138, 0.2);
}

.gcloud-chat-window {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 20px 20px 0px 20px;
    border: 2px solid #8B1538;
}

/* Modern chat header */
.gcloud-chat-header {
    width: 100%;
    min-height: 72px;
    padding: 16px 20px;
    background: var(--uminho-bg-lighter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.8rem 0.8rem 0 0;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    border-bottom: 1px solid #E2E8F0;
}

.gcloud-chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.gcloud-chat-header-avatar {
    width: 40px;
    height: 40px;
    background: var(--uminho-primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 18px;
}

.gcloud-chat-header-text {
    flex: 1;
}

.gcloud-chat-header-title {
    color: var(--uminho-text-dark);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.025em;
    font-family: 'Roboto', 'Segoe UI', system-ui, sans-serif;
}

.gcloud-chat-header-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    margin: 2px 0 0 0;
}

.gcloud-chat-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.gcloud-chat-header button {
    border: none;
    width: 36px;
    height: 36px;
    padding: 8px;
    background: #C0C0C0;
    border-radius: 8px;
    color: #808080 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gcloud-chat-header button:hover {
    background: #A9A9A9;
	color: #D3D3D3;
    /*transform: scale(1.05);*/
}

.gcloud-chat-header button svg {
    background: transparent;
	color: #353839;
    /*transform: scale(1.05);*/
}

.gcloud-chat-header button:hover svg {
    background: transparent;
	color: #353839;
    /*transform: scale(1.05);*/
}

.gcloud-tracingid {
    position: absolute;
    bottom: -18px;
    left: 20px;
    font-size: 10px;
    color: var(--uminho-text-light);
    background: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    z-index: 1;
}

/* Modern chat window */
.gcloud-chat-window-container {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 400px;
    max-width: calc(100vw - 60px);
    height: 600px;
    max-height: calc(100vh - 140px);
    display: none;
    z-index: 9999999999;
    animation: slideInUp 0.3s ease-out;
}

.gcloud-chat-window {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: var(--uminho-shadow-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--uminho-border);
}

.gcloud-chat-header button:hover svg {
    fill: #EFF6FF !important;
}

.gcloud-clear-btn {
	position: relative;
}

.gcloud-clear-btn:after {
	content: attr(data-title);
    position: absolute;
    top:100%;
	left:50%;
    padding: 4px 8px;
	background-color:white;
    color: #8B1538;
	border: 1px solid #C9D5E7;
    white-space: nowrap;
    border-radius: 4px;
	font-size: 13px;
    font-weight: 400;
	line-height: 18px;
	letter-spacing: 0.25px;
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
    transform: translateX(-50%);
}

.gcloud-clear-btn:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}

.gcloud-more-btn {
	margin-left: auto;
	position: relative;
}

.gcloud-more-btn:after {
	content: attr(data-title);
    position: absolute;
    top:100%;
	right:50%;
    padding: 4px 8px;
	background-color:white;
    color: #8B1538;
	border: 1px solid #C9D5E7;
    white-space: nowrap;
    border-radius: 4px;
	font-size: 13px;
    font-weight: 400;
	line-height: 18px;
	letter-spacing: 0.25px;
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
}

.gcloud-more-btn:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}

.gcloud-close-btn {
	margin-left: auto;
	position: relative;
}

.gcloud-close-btn:after {
	content: attr(data-title);
    position: absolute;
    top:100%;
	right:50%;
    padding: 4px 8px;
	background-color:white;
    color: #8B1538;
	border: 1px solid #C9D5E7;
    white-space: nowrap;
    border-radius: 4px;
	font-size: 13px;
    font-weight: 400;
	line-height: 18px;
	letter-spacing: 0.25px;
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
}

.gcloud-close-btn:hover:after {
    opacity: 1;
    transition: all 0.1s ease 0.5s;
    visibility: visible;
}


/* Modern chat body */
.gcloud-chat-body {
    flex: 1;
    padding: 8px 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    background: var(--uminho-bg-lighter);
}

.gcloud-chat-body-first {
    flex: 1;
    padding: 40px 20px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--uminho-bg-lighter);
    text-align: center;
}

.gcloud-chat-body-first-conditions {
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    line-height: 15.6px;
    margin: 30px 50px 0;
    color: #6B7280;
}

.gcloud-chat-body-first-conditions a {
    font-weight: 600;
	text-decoration: underline;
    line-height: 18.2px;
    color: #8B1538;
}

.gcloud-chat-body-first-text {
    font-family: 'Roboto', system-ui, sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: var(--uminho-text-dark);
    margin-bottom: 32px;
}

.gcloud-chat-body-first-text-cap {
    color: var(--uminho-primary);
    font-weight: 700;
}

.gcloud-chat-body-first-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 320px;
    margin-bottom: 24px;
}

.gcloud-body-first-button {
    padding: 12px 16px;
    border: 2px solid var(--uminho-primary);
    background: white;
    color: var(--uminho-primary);
    border-radius: 12px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gcloud-body-first-button:hover {
    background-color: #8B1538;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 21, 56, 0.3);
}

/* Modern message styling */
.gcloud-chat-message-inbound,
.gcloud-chat-message-outbound {
    display: flex;
    margin-bottom: 16px;
    max-width: 85%;
    animation: messageSlideIn 0.3s ease-out;
}

.gcloud-chat-message-inbound {
    align-self: flex-end;
    justify-content: flex-end;
}

.gcloud-chat-message-outbound {
    align-self: flex-start;
    justify-content: flex-start;
    gap: 12px;
}

.gcloud-chat-message-text {
    padding: 14px 16px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.4;
    word-wrap: break-word;
    font-family: 'Roboto', system-ui, sans-serif;
}

.gcloud-chat-message-inbound .gcloud-chat-message-text {
    background: var(--uminho-primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.gcloud-chat-message-outbound .gcloud-chat-message-text {
    background: white;
    color: var(--uminho-text-dark);
    border: 1px solid var(--uminho-border);
    border-bottom-left-radius: 4px;
    box-shadow: var(--uminho-shadow);
}

.gcloud-chat-message-icon-container {
    width: 36px;
    height: 36px;
    background: var(--uminho-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

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

/* Modern input styling */
.gcloud-chat-response-container {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid var(--uminho-border);
}

.gcloud-chat-response {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding: 12px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 0.8rem;
    background: white;
    transition: border-color 0.2s ease;
}

.gcloud-chat-response:focus-within {
    border-color: var(--uminho-text-light);
}

.gcloud-chat-input {
    flex: 1;
    border: none;
    outline: none;
    resize: none;
    font-family: 'Roboto', system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: var(--uminho-text-dark);
    background: transparent;
    min-height: 20px;
    max-height: 120px;
}

.gcloud-chat-input::placeholder {
    color: var(--uminho-text-light);
}

.gcloud-send-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #A9A9A9;
    color: white !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.gcloud-send-btn:hover:not(:disabled) {
    background: #696969;
    transform: scale(1.05);
}

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

.gcloud-send-btn:disabled {
    background: var(--uminho-text-light);
    cursor: not-allowed;
    opacity: 0.6;
}
.gcloud-chat-message-inbound {
    margin: 10px 0;
    padding: 16px;
    border-radius: 18px;
    border-bottom-right-radius: 4px;
    max-width: 75%;
    display: flex;
    align-self: flex-end;
    background-color: #FEF7F7;
    border-left: 3px solid #8B1538;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.25px;
    color: #8B1538;
    overflow-wrap: anywhere;
}

.gcloud-chat-message-outbound {
    margin: 10px 0 0 0;
    padding: 16px;
    width: 95%;
    display: flex;
    align-self: flex-start;
    background-color: #F9F1F1;
    border-left: 3px solid #8B1538;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    letter-spacing: 0.25px;
    color: #8B1538;
    align-items: flex-start;
}

.gcloud-chat-message-icon-container {
	width: 32px;
	height: 32px;
	background-color: #C41E3A;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 14px;
}

.gcloud-chat-message-icon-container::before {
	content: "U";
}

.gcloud-chat-message-text {
    margin-left: 10px;
    overflow-wrap: anywhere;
}


/* Restart confirmation window */
.gcloud-chat-restart-window-container {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 40%;
    max-width: 400px;
    height: 600px;
    max-height: 720px;
    border-radius: 0.8rem !important;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999999999;
    background-color: rgba(13, 13, 13, 0.5);
}

.gcloud-chat-restart-window {
    width: 95%;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 12px;
    max-width: 360px;
    justify-content: center;
    align-items: center;
}

.gcloud-chat-restart-window-text-1 {
    font-size: 19px;
    font-weight: 600;
    line-height: 150%;
    text-align: center;
    color: var(--uminho-text-dark);
    font-family: 'Roboto', 'Arial', sans-serif;
    margin: 24px;
}

.gcloud-chat-restart-window-text-2 {
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0.25px;
    text-align: center;
    color: #6B7280;
    margin: 16px 34px 0;
}

.gcloud-clear-restart-btn {
    width: 90%;
    height: 48px;
    margin: 40px 0 0;
    border-radius: 0.8rem;
    background-color: white;
    color: var(--uminho-primary);
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid var(--uminho-text-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gcloud-clear-restart-btn:hover {
    background-color: var(--uminho-bg-light);
}

.gcloud-clear-back-btn {
    width: 90%;
    height: 48px;
    margin: 12px 0 20px;
    border-radius: 0.8rem;
    background-color: white;
    color: var(--uminho-primary);
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid var(--uminho-text-light);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gcloud-clear-back-btn:hover {
    background-color: var(--uminho-bg-light);
}

/* Chat options */
.gcloud-chat-options {
    background-color: #8B1538;
    padding: 10px;
    text-align: center;
    justify-content: center;
    display: none;
    visibility: hidden;
}

.gcloud-chat-options button {
    padding: 10px 20px;
    border: solid white 2px;
    background-color: #8B1538;
    color: white;
    border-radius: 8px;
    cursor: pointer;
	margin: 0 10px;
	transition: all 0.3s ease;
}

.gcloud-chat-options button:hover {
    background-color: white;
    color: #8B1538;
}

/* Message cards */
.gcloud-chat-message-card-pdf {
    display: inline-block;
    margin-top: 16px;
    color: #8B1538;
    font-family: 'Roboto', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0;
}

.gcloud-chat-message-card-web {
    display: inline-block;
    margin-top: 16px;
    color: #8B1538;
    font-family: 'Roboto', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0;
}

/* Message Container and Balloon Styling */
.gcloud-message-container {
    display: flex;
    flex-direction: column;
    margin: 12px 16px;
    max-width: 80%;
    clear: both;
}

.gcloud-message-inbound {
    align-items: flex-end;
    align-self: flex-end;
}

.gcloud-message-outbound {
    align-items: flex-start;
    align-self: flex-start;
}

.gcloud-message-balloon {
    padding: 12px 16px;
    border-radius: 18px;
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
    box-shadow: var(--uminho-shadow);
    position: relative;
}

.gcloud-balloon-inbound {
    background-color: #808080;
    color: white;
    border-bottom-right-radius: 4px;
}

.gcloud-balloon-outbound {
    background-color: var(--uminho-bg-lighter);
    color: var(--uminho-text-dark);
    border: 1px solid var(--uminho-border);
    border-bottom-left-radius: 4px;
}

.gcloud-message-timestamp {
    font-size: 11px;
    color: var(--uminho-text-light);
    margin-top: 4px;
    font-family: 'Roboto', 'Arial', sans-serif;
}

.gcloud-message-inbound .gcloud-message-timestamp {
    text-align: right;
}

.gcloud-message-outbound .gcloud-message-timestamp {
    text-align: left;
}

/* QuickReply buttons styling */
.gcloud-chat-quickreply-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding: 0;
    width: 100%;
    clear: both;
}

.gcloud-chat-quickreply-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 33px;
    background-color: white;
    color: var(--uminho-primary);
    border: 1px solid var(--uminho-text-light);
    border-radius: 0.8rem;
    font-family: 'Roboto', 'Arial', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-height: 33px;
    /*box-shadow: var(--uminho-shadow);*/
}

.gcloud-chat-quickreply-button:hover {
    background-color: var(--uminho-bg-light);
    /*color: white;*/
    /*transform: translateY(-1px);*/
    /*box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);*/
}

.gcloud-chat-quickreply-button:active {
    /*transform: translateY(0);*/
    /*box-shadow: var(--uminho-shadow);*/
}

.gcloud-chat-quickreply-button:focus {
    outline: none;
    /*box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.2);*/
}

.gcloud-chat-quickreply-button-disabled {
    background-color: #f7f7f7 !important;
    color: #999 !important;
    border-color: #ddd !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

.gcloud-chat-quickreply-button-disabled:hover {
    background-color: #f7f7f7 !important;
    color: #999 !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Message text links styling */
.gcloud-chat-message-text a,
.gcloud-message-balloon a,
.gcloud-message-link {
    color: var(--uminho-primary);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s ease;
    cursor: pointer;
}

.gcloud-chat-message-text a:hover,
.gcloud-message-balloon a:hover,
.gcloud-message-link:hover {
    color: var(--uminho-primary-dark);
    text-decoration: underline;
}

.gcloud-chat-message-text a:focus,
.gcloud-message-balloon a:focus,
.gcloud-message-link:focus {
    outline: 2px solid var(--uminho-primary);
    outline-offset: 2px;
    border-radius: 2px;
}

/* Responsive design */
@media only screen and (max-width: 767px) {
	.gcloud-chat-window {
		border-radius: 0px;
	}

	.gcloud-chat-window-container {
		bottom: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
		height: 100%;
		max-height: 100%;
		border-radius: 0;
	}

	.gcloud-chat-restart-window-container {
		bottom: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
		height: 100%;
		max-height: 100%;
		border-radius: 0;
	}

	.gcloud-chat-body-first-conditions {
	    margin-top: 20px;
		margin-left: 0;
		margin-right: 0;
	}

	.gcloud-chat-body-first-text {
	    margin-top: 40px;
	}

	.gcloud-chat-body-first-buttons {
	    margin-top: 30px;
	}

	.gcloud-chat-message-feedback {
		opacity: 1;
	}
}

@media only screen and (max-height: 772px) {
	.gcloud-chat-body-first-conditions {
		margin-top: 20px;
	}

	.gcloud-chat-body-first-text {
		margin-top: 30px;
	}

	.gcloud-chat-body-first-buttons {
		margin-top: 30px;
	}
}
