body {
	display: block;
	justify-content: center;
	align-items: center;
	height: 80vh;
	background-color: #f8f9fa;
	justify-content: center;
	align-items: center;
	text-align:center;
}
.login-container {
	width: 100%;
	max-width: 360px;
	padding: 20px;
	background: white;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	text-align: center;
}
.logo {
	width: 100%;
	margin-bottom: 20px;
}
.btn-primary {
background-color: #E9C2C2;
border: none;
}

/* hover 상태 제거 */
.btn-primary:hover {
background-color: #5A2A2A !important;
border: none;
}

/* active 상태 제거 */
.btn-primary:active {
background-color: #5A2A2A !important;
border: none;
}
.container {
	text-align: center;
}
        .chat-container {
            max-width: 100%;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            background-color: white;
            display: flex;
            flex-direction: column;
            height: 90vh; /* Use viewport height for better responsiveness */
            position: relative;
        }
        
        .chat-header {
            background-color: #3a3a3a;
            color: white;
            padding: 15px;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .chat-body {
            flex-grow: 1;
            overflow-y: auto;
            padding: 15px;
            background-color: #f8f9fa;
            display: flex;
            flex-direction: column;
            padding-bottom: 80px; /* Add space for action buttons */
        }

        .message {
            margin-bottom: 15px;
            width: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .message-ai {
            background-color: #e9ecef;
            padding: 10px 15px;
            border-radius: 15px;
            align-self: flex-start;
            max-width: 80%;
            margin-right: auto; /* Pushes the hotel message to the left */
            position: relative;
			text-align:left;
        }
        
        .message-user {
            background-color: #057aff;
            color: white;
            padding: 10px 15px;
            border-radius: 15px;
            align-self: flex-end;
            max-width: 80%;
            margin-left: auto; /* Pushes the user message to the right */
            position: relative;
			text-align:right;
        }
        
        .message-actions {
            font-size: 12px;
            color: #6c757d;
            margin-top: 5px;
            align-self: flex-start;
        }
        
        .mic-button {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #ff4b4b;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
            margin: 0 auto;
            cursor: pointer;
        }
        
        .action-buttons {
            display: flex;
            justify-content: space-between;
            padding: 10px 20px;
            background-color: #f8f9fa;
            border-top: 1px solid #e9ecef;
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 10;
        }
        
        .action-button {
            border: none;
            background-color: transparent;
            color: #6c757d;
            font-size: 18px;
        }
        
        .recording-text {
            text-align: center;
            color: #6c757d;
            font-size: 14px;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        /* Larger volume icon */
        .bi-volume-down {
            font-size: 18px; /* Increase the icon size */
        }
        
        /* Input area inside chat body */
        .input-area {
            margin-top: auto;
            padding: 10px 0;
        }
        
        .input-group {
            border-radius: 30px;
            background-color: #f8f9fa;
            padding: 5px;
            border: 1px solid #e9ecef;
        }
        
        .form-control {
            border: none;
            background-color: transparent;
        }
        
        .form-control:focus {
            box-shadow: none;
            outline: none;
        }
        
        /* New styles for feedback and translation buttons */
        .feedback-btn, .translate-btn {
            font-size: 12px;
            background-color: transparent;
            border: none;
            position: absolute;
            bottom: -18px;
            padding: 2px 5px;
            cursor: pointer;
            border-radius: 10px;
            opacity: 0.7;
            transition: opacity 0.2s;
        }
        
        .feedback-btn:hover, .translate-btn:hover {
            opacity: 1;
        }
        
        .feedback-btn {
            right: 5px;
            color: #057aff;
        }
        
        .translate-btn {
            left: 5px;
            color: #3a3a3a;
        }
        
        /* Modal styling */
        .modal-content {
            border-radius: 15px;
        }
        
        .modal-header {
            border-bottom: 1px solid #e9ecef;
            background-color: #E9C2C2;
        }
        
        .modal-footer {
            border-top: 1px solid #e9ecef;
            background-color: #f8f9fa;
        }

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

       
.modal-body{text-align:left}