body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

#root {
    
}

div[align="center"] {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

h1, h2, h3 {
    color: #1a73e8;
    font-weight: 500;
}

p {
    font-size: 16px;
    margin-bottom: 1.2em;
}

ul {
    padding-left: 20px;
    margin-bottom: 1.2em;
    list-style-position: inside;
}

li {
    margin-bottom: 0.6em;
}

img.aligncenter {
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

footer {
    margin-top: 50px;
    padding: 20px;
    background-color: #1a73e8;
    color: #fff;
    text-align: center;
    font-size: 14px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

footer .email {
    display: block;
    margin: 8px 0 20px 0;
}
footer .email a {
    color:#fff;
}
footer .email a:hover {
    text-decoration: none;
}

footer .lang-switcher {
    margin-top: 10px;
}

footer .lang-switcher a {
    background-color: #fff;
    color: #1a73e8;
    border: none;
    padding: 6px 12px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}

footer .lang-switcher a.active,
footer .lang-switcher a:hover {
    background-color: #e3e3e3;
}
footer .footer-links {
	margin-top: 15px;
}

footer .footer-links a {
	color: #fff;
	text-decoration: underline;
	font-size: 14px;
	transition: color 0.3s;
}

footer .footer-links a:hover {
	color: #d0dfff;
}
#preloader {
    font-family: Roboto, sans-serif;
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    animation: fadeIn 0.5s ease-in-out;
    background-color: #1a73e8;
  }

  .dots::after {
    content: "";
    display: inline-block;
    animation: dots 1.5s steps(3, end) infinite;
    width: 1em;
    text-align: left;
  }

  @keyframes dots {
    0%   { content: ""; }
    33%  { content: "."; }
    66%  { content: ".."; }
    100% { content: "..."; }
  }

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