/* =========================================================
   COOL CHARTS — CONSOLIDATED STYLESHEET (DEVELOPER VERSION)
   ========================================================= */

/* ---------------------------
   RESET & BASE LAYOUT
----------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Dosis', sans-serif;
  background-color: #ffffff;
  color: #000000;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ---------------------------
   SIDEBAR
----------------------------*/
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 200px;
  height: 100vh;
  background-color: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}
.sidebar::-webkit-scrollbar { width: 6px; }
.sidebar::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 3px;
}

.sidebar-footer {
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-top: 1px solid #333;
  padding: 15px 10px;
  overflow: hidden;
}
.sidebar-footer-logo {
  width: 90%;
  height: auto;
  border-radius: 5px;
  transition: width 0.3s ease;
}

/* ---------------------------
   MAIN CONTENT AREA
----------------------------*/
.content-main {
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin-left: 200px;
  padding: 20px;
  box-sizing: border-box;
  overflow: hidden;
}

/* ---------------------------
   UNIVERSAL HEADERS
----------------------------*/
[class^="content-"][data-page] > :first-child,
.content-title,
.section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Dosis', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

/* ---------------------------
   IFRAMES & OBJECTS
----------------------------*/
iframe, object {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  border: none;
  overflow: hidden;
  border-radius: 8px;
  scrollbar-width: none;
}
iframe::-webkit-scrollbar,
object::-webkit-scrollbar {
  display: none;
}

/* ---------------------------
   BUTTONS
----------------------------*/
.open-sheets-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.open-sheets-btn:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

/* ---------------------------
   FEEDBACK SECTION
----------------------------*/
.feedback-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}
.feedback-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 600px;
  width: 100%;
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ---------------------------
   DONATE SECTION
----------------------------*/
.donate-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  text-align: center;
}

/* ---------------------------
   GOOGLE TRANSLATE FIX
----------------------------*/
#google_translate_element { position: relative; z-index: 9999; }
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }

/* ---------------------------
   MOBILE RESPONSIVE VIEW
----------------------------*/
@media (max-width: 768px) {
  .sidebar, .content-main, .appearance-popup { display: none !important; }
  .mobile-only-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }
  .mobile-message-content {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
  }
  .mobile-message-icon { font-size: 80px; margin-bottom: 20px; }
  .mobile-message-title {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 15px;
    line-height: 1.3;
  }
  .mobile-message-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
  }
  .mobile-link-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  }
  .mobile-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
  }
}
