/* --- Variables (from sample2pp.html, adapted to our theme) --- */
:root {
    /* Our established theme colors */
    --color-primary-start: #3367d6; /* Blue from Google's theme */
    --color-primary-end: #1a73e8;   /* Slightly darker blue */
    --color-secondary: #018786;     /* Teal for secondary actions */
    --color-success: #4CAF50;       /* Green */
    --color-warning: #FFC107;       /* Amber/Yellow */
    --color-error: #F44336;         /* Red */
    --color-info: #2196F3;          /* Light blue */
    --color-pure-white: #ffffff;    /* Pure white */
    --color-light-grey: #f0f0f0;    /* Light grey for menu */
    --color-light-blue-tile: #E3F2FD; /* Light blue for tiles */
    --color-dark-text: #333333;     /* Dark grey for most text */
    --color-light-border: #e0e0e0;  /* Light grey border */

    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-xxl: 48px;

    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-full: 50%;

    --font-base-size: 16px; /* From sample2pp.html */
}

/* --- Base HTML/Body Styles --- */
html, body {
    height: 100%;
    margin: 0;
    margin: 0;
    padding: 0;
    font-family: Verdana, Arial, sans-serif; /* Keeping Verdana as per sample */
    font-size: var(--font-base-size);
    background: var(--color-pure-white); /* Overall white background */
    color: var(--color-dark-text); /* Dark text for general content */
    
}


.main-content-wrapper {
    padding-top: 100px;   /* height of header */
    padding-bottom: 100px; /* height of footer */
   
    overflow-y: auto;
}



.dashboard-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    z-index: 9998;
    overflow: hidden; /* Keep shimmer inside */
}

/* Golden mist overlay */
.dashboard-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: -200%;
    height: 100%;
    width: 200%;
    background: linear-gradient(
        120deg,
        rgba(255, 215, 0, 0) 0%, 
        rgba(0, 183, 255, 0.534) 30%, 
        rgba(255, 215, 0, 0.8) 50%, 
        rgba(96, 211, 231, 0.411) 70%, 
        rgba(255, 215, 0, 0) 100%
    );
    filter: blur(8px);
    animation: goldenShimmer 2.5s ease-out forwards;
    z-index: 9999; /* On top of all header elements */
    pointer-events: none; /* Don't block clicks */
    opacity: 0; /* start invisible */
}

/* Animation with fade-in/out */
@keyframes goldenShimmer {
    0% {
        left: -200%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        left: 200%;
        opacity: 0;
    }
}





.dashboard-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 100%;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    z-index: 9999;
   
    display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */
    
}





.svg-container {
    width: 200px;      /* starting size */
    max-width: 100%;   /* adapt to small screens */
}
.svg-icon {
    width: 100%;       /* take all container width */
    height: auto;      /* keep proportions */
}
.svg-icon {
    width: clamp(100px, 20vw, 200px); /* min 100px, max 200px, fluid in between */
    height: auto;
}
table {
    width: 60%;
    margin: 20px auto;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}
th, td {
    border: 1px solid #ddd;
    padding: 6px;
    text-align: center;
}
th {
    background-color: #f2f2f2;
    color: #333;
}
tr:nth-child(even) {
    background-color: #f9f9f9;
}
tr:hover {
    background-color: #e6f3ff; /* Light blue on row hover */
}
img {
    width: 30px;
    height: auto;
    vertical-align: middle;
}
a {
    color: #000000; /* Black text for links */
    text-decoration: none; /* Remove underline */
}
a:hover {
    color: #00008b; /* Dark blue on link hover */
}





.btn-shake {
    display: inline-block;
    margin: 5px;
    padding: 6px 16px;
    background: linear-gradient(145deg, #e6f9ff, #b3ecff); /* fresh aqua tone */
    color: #064785 !important; /* dark, rich blue text */
    font-size: 14px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    border: 1px solid #7fd6f6; /* aqua border */
    border-radius: 10px;
    text-decoration: none !important; /* ensure no underline */
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  }
  
  /* Hover effect */
  .btn-shake:hover {
    background: linear-gradient(145deg, #d4f4ff, #9fe0ff);
    color: #032d57 !important; /* slightly darker on hover */
    animation: shake 0.4s;
    box-shadow: 0 4px 10px rgba(255, 243, 178, 0.507);
  }
  
  /* Active/pressed */
  .btn-shake:active {
    transform: scale(0.97);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset;
  }
  
  /* Shake animation */
  @keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    50% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
  }
    
  
  
  
  




.contact-bar-outer {
    position: fixed;  /* or absolute depending on layout */
    top: 0;
    left: 0;
    width: 100%;
    background-color: white; /* optional */
    z-index: 1000; /* keep it above other content */
    border-top:4px solid #0c0391ff;
    margin-bottom: 5px;;
    padding-bottom: 5px;
}

  .contact-bar {
    display: flex;
    position: absolute;
    top: 0; right: 0;
    height: 30px;
    align-items: flex-start;
    z-index: 2;
    margin-bottom: 5px;;
    padding-bottom: 5px;
  }
  /* "Pill" effect: only blue top curve */
  .contact-corner-out {
    width: 30px;
    height: 30px;
    position: relative;
    background: #0c0391ff;
    overflow: hidden;
    flex-shrink: 0;
  }
  .contact-corner {
    width: 30px;
    height: 30px;
    position: relative;
    background: #fff;
    overflow: hidden;
    flex-shrink: 0;
  }
  .contact-corner.left::before,
  .contact-corner.right::before {
    content: "";
    position: absolute;
    width: 40px; height: 40px;
    top: 0; 
    background: #ffffff; /* Blue shade from your screenshot */
  }
  /* Left corner: only top-right blue pill is visible */
  .contact-corner.left::before {
    right: 0;
    border-top-right-radius: 25px;
  }
  /* Right corner: only top-left blue pill is visible */
  .contact-corner.right::before {
    left: 0;
    border-top-left-radius: 25px;
  }
  /* Hide all of the blue except the pill tip */
  .contact-corner.left { border-top-right-radius: 20px; }
  .contact-corner.right { border-top-left-radius: 20px; }
  
  /* Middle content bar */
  .contact-center {
    background: #0c0391ff;
    color: #fff;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    height: 40px;
    min-width: 100px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    padding: 0 18px;
    position: relative;
    z-index: 2;
   padding-top: 2px;
    padding-bottom: 7px;
  }
  .contact-center select {
    background: #2340b6;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    padding: 3px 9px;
    outline: none;
  }
  .contact-center a {
    color: #fff;
    text-decoration: underline;
  }
  .contact-center a:hover {
    color: #a4bbff;
  }
  .contact-center span:not(:last-child) {
    margin-right: 12px;
  }
  

  .logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-wrapper svg {
    height: 100%;
    width: auto;
    display: block;
}

/* Star sparkle style */
.star {
    position: absolute;
    width: 12px;
    height: 12px;
    opacity: 0;
    pointer-events: none;
    animation: twinkle 1.5s ease-out forwards;

    /* 5-point star shape */
    clip-path: polygon(
        50% 0%, 61% 35%, 98% 35%,
        68% 57%, 79% 91%, 50% 70%,
        21% 91%, 32% 57%, 2% 35%,
        39% 35%
    );
}

@keyframes twinkle {
    0% { transform: scale(0) rotate(0deg); opacity: 0; }
    30% { transform: scale(1.3) rotate(15deg); opacity: 1; }
    100% { transform: scale(0) rotate(30deg); opacity: 0; }
}







.custom-menu {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
}

.custom-menu a {
    text-decoration: none;
    color: black;
    transition: color 0.3s;
    padding: 0 5px;
}

.custom-menu a:hover {
    color: #0a3d91; /* dark blue on hover */
}

.custom-menu .dot {
    color: #888;
    font-weight: bold;
    line-height: 1;
    vertical-align: middle;
    user-select: none; /* optional, prevent selecting the dot */
}