/* 
 * Consolidated layout.css
 * Contains core layout styles for the application
 */

 body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--background-color);
}

/* Main container */
#content {
  opacity: 0;
  transition: opacity 0.5s ease;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#content.fade-in {
  opacity: 1;
}

/* Main messenger container */
.messenger-area {
  max-width: 1000px;
  width: 95%;
  height: 90vh;
  margin: 0 auto;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) ease;
  opacity: 0;
  transform: translateY(10px);
  overflow: hidden;
}

.messenger-area.active {
  opacity: 1;
  transform: translateY(0);
}

/* Chat messages area */
.msger-chat {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  background-color: #f8f8f8;
  scroll-behavior: smooth;
}

.msger-chat a {
  color: #00549f !important;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
.msger-chat a:hover,
.msger-chat a:focus {
  color: #0077c8;
}

/* Form container styles */
.form-container {
  max-width: 700px;
  margin: 30px auto;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
}

.form-header img {
  max-height: 60px;
  margin-bottom: 20px;
}

/* Container for the basic index page */
.chat-container {
  width: 90%;
  max-width: 1000px;
  height: 90vh;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}