/** BASE TEMPLATE CLASSES */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

.no_margins {
    margin: 0%;
}

.main_container {
flex: 1;
display: flex;
justify-content: center;  /* Horizontally center the content */
align-items:flex-start;      /* Vertically center the content */
/* min-height: 50vh;*/
}


.main_content {
display: flex;    
flex-direction: column;
width: 80%;
  

padding: 20px;
box-sizing: border-box;


}

/* The wrapper uses flexbox to manage the layout */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* At least the full viewport height */
}


/* Footer stays at the bottom */
footer {
  flex-shrink: 0; /* Prevents the footer from shrinking */
}

body {
  font-family: Arial, sans-serif;
}

/* Centering the container */
.login-page-center {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh; /* Adjust based on your layout */
}

/* Style for the form box */
.login-form-box {
  background-color: #ffffff; /* Form box background color */
  border: 1px solid #ddd;    /* Optional border */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  width: 483px;             /* Fixed width for the form */
  text-align: center;       /* Center content inside the form */
}

/*************************************** HEADER CLASSES */


.header_nav_area {
    color: white;
  
    background-color: #313131;
  
    display: flex;
  
    justify-content: space-between;
  
    border-radius: 0;
    padding-left: 5px;
  
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .header_nav_area_ul{
    /*height: 39px;*/
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    padding: 0;
    margin: 0;
    
  }
  
  
  .header_nav_area_cell {
    display: inline-block;
    
    padding-top: 10px;
    padding-bottom: 10px;
    color: #f4f4f4;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .header_nav_area_cell:hover{
    background-color: #f4f4f4;
    color: #313131;
  }
  
  .header_nav_area_cell:hover a {
   
    color: #313131;
  }
  
  
  .header_nav_area_cell_link {
    
    text-decoration: none;
    color: #f4f4f4;
    margin-right: 10px;
    margin-left: 10px;
    font-size: 0.66vw;
    font-weight: 300;
   
  
    line-height: 1.7;
    word-wrap: break-word;
  }
  
  .header_nav_area_cell_link:hover{
    color: #313131;
  }
  
  .header_nav_area_cell_with_right_border{
    
        border-right: 1px solid #575757;
        padding-right: 5px;
      
  }
  
  
  .cu_header_redbar{
    height: 3px;
    background: #cf112d;
  }
  
  
  .scs_logo_in_header{
    height: 72px;
    
   
  }
  
  
  .scs_logo_in_header_list{
    display: flex;
    align-items: center;
    justify-content: left;
    list-style-type: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  .scs_logo_in_header_list_item{
   
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px; /* Specify a height that suits your needs */
    margin: 10px;    
    cursor: pointer;  
  
  }
  
  .scs_logo_in_header_list_item_text_link{
    text-decoration: none;
    color: #575757;
    font-size: 1.5rem;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  
  .scs_logo_in_header_list_item_text_link:hover{
  
    color: #e91c24;
  }
  
  
  
  .scs_logo_bar{
    height: 1px;
    background:#949494;
    opacity: 0.4;
  }
  

/*************************************** FOOTER CLASSES */

.footer_branding_div {

    background-image: url('/static/CUMapperApp/waves.svg');
    /* Set the size of the background image */
    background-size: 100% auto;
    /* Set the position of the background image */
    background-position: center bottom;
  
    background-repeat: no-repeat;
    padding: 25px 0 110px 0;
  
    bottom: 0;
    min-height: 50vh;
    
    /*position: absolute;*/
  }
  
  .b-footer__block {
    padding: 0px 30px;
  }
  
  
  .footer_list_on_same_line{
    list-style-type: none; 
    margin: 0;
  }
  
  .footer_list_item {
    text-transform: uppercase !important;
    line-height: 2.2em;
    color: #949494;
    margin-bottom: 0;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .footer_list_item_link {
    text-decoration: none;
    outline: none;
    color: white;
    cursor: pointer;
  }
  
  .footer_list_item_link:hover{
  
    color: #e91c24;
  }
  
  
  .footer_list_left_item_divider {
    border-right: 1px solid #949494;
    padding-right: 10px;
    margin-right: 10px;
  }
  
  .footer_list_item_same_line {
    display: inline;
  }
  
  
  
  .footer_link_item {
  
    font-size: 0.75rem;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    color: #ffffff;
    display: inline-block;
    padding: 0 10px;
    margin: 0;
  
    outline: none;
    line-height: 1.8;
   
  }
  
  
  .footer_link_item_link {
    border-bottom: 1px solid white;
    display: inline-block;
    text-decoration: none;
    color: #ffffff;
  }
  
  
  .footer_link_item_link:hover {
    color: #949494;
    border-bottom: 1px solid #949494;
    cursor: pointer;
  }
  
  



/************************** Buttons and Input Fields */

.coolRoundedButton {
    display: inline-block;
    background-color: #e91c24; /* Red background */
    color: #f4f4f4; /* White text */
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.3s ease; /* transitions all properties */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* subtle shadow */
    border: 2px solid transparent; /* invisible border */
    align-self: flex-start;
    }
    
    .coolRoundedButton:hover {
    background-color: #f4f4f4; /* White background */
    color: #e91c24; /* Red text */
    transform: scale(1.05); /* slightly enlarges the button on hover */
    font-weight: bold; /* bold text on hover */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* more pronounced shadow on hover */
    border: 2px solid #e91c24; /* visible red border on hover */
    }
    
    .coolRoundedButton:hover a {
    color: #e91c24; /* Red text */
    }
    
    
    .reverseCoolRoundedButton {
    display: inline-block;
    background-color: #f4f4f4;
    color: #e91c24;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.3s ease; /* transitions all properties */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* subtle shadow */
    border: 2px solid transparent; /* invisible border */
    align-self: flex-start;
    }
    
    .reverseCoolRoundedButton:hover {
    background-color: #e91c24;
    color: #f4f4f4;
    transform: scale(1.05); /* slightly enlarges the button on hover */
    font-weight: bold; /* bold text on hover */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* more pronounced shadow on hover */
    border: 2px solid #f4f4f4; /* visible border on hover */
    }
    
    .reverseCoolRoundedButton:hover a {
    color: #f4f4f4;
    }
    



.cool-text-input-field {
  padding: 10px 12px;
  margin: 6px 0;
  border: 2px solid #ddd; /* Light grayish border for initial state */
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  background-color: #f8f9fa;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  }
  
  .cool-text-input-field:focus {
  border-color: #e91c24; /* Theme color on focus */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .cool-text-input-field-long {
    width: 600px; 
    padding: 10px 12px;
    margin: 6px 0;
    border: 2px solid #ddd; /* Light grayish border for initial state */
    border-radius: 6px;
    font-size: 16px;
    color: #333;
    background-color: #f8f9fa;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    }
    
    .cool-text-input-field-long:focus {
    border-color: #e91c24; /* Theme color on focus */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
    
  
  
  .dropdown-input-field {
  padding: 10px 12px;
  margin: 6px 0;
  border: 2px solid #ddd; /* Light grayish border */
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  }
  
  .dropdown-input-field:focus {
  border-color: #e91c24;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  
  .dropdown-input-field-half {
  width: 150px; 
  padding: 10px 12px;
  margin: 6px 0;
  border: 2px solid #ddd; /* Light grayish border */
  border-radius: 6px;
  font-size: 16px;
  color: #333;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  }
  
  .dropdown-input-field-half:focus {
  border-color: #e91c24;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  
  .login-email-field {
  width: 80%;
  padding: 10px;
  margin: 5px 0;
  border: 2px solid #e91c24; /* Updated border color */
  border-radius: 8px;
  background-color: #f8f9fa;
  background-image: linear-gradient(to right, #f8f9fa, #e9ecef);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: border-color 0.3s, box-shadow 0.3s;
  font-size: 16px;
  color: #495057;
  }
  
  .login-email-field::placeholder {
  color: #6c757d;
  opacity: 1;
  }
  
  .login-email-field:hover,
  .login-email-field:focus {
  border-color: #c41411; /* Darker shade of the same red for hover/focus */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  outline: none;
  }
  
  .form-field {
  display: flex;
  align-items: center; /* Align items vertically */
  justify-content: start; /* Align items horizontally */
  margin-bottom: 10px; /* Spacing between each field */
  }
  
  .form-field label {
  min-width: 150px; /* Adjust based on your requirement */
  margin-right: 20px; /* Space between label and input field */
  }
  .cool-text-input-field, .dropdown-input-field {
  width: 300px; 
  padding: 10px;
  }
  
  .form-label {
    padding: 0.5rem;
    font-size: 16px;
     
}
  
  
  .form-button {
  margin-top: 20px;
  }

  .hidden {
    display: none;  /* This class will help us in the vanishing trick */
    }
    


/* SUPERVISOR LIST CLASSES */


.styled-list {
  list-style-type: none; /* Remove default bullet points */
  padding: 0;
  margin: 0;
}

.styled-list li {
  padding: 10px 15px;  /* Add padding for better readability */
  margin-bottom: 5px;  /* Space between list items */
  border-radius: 5px;  /* Rounded corners for a modern look */
  background-color: #f9f9f9; /* Light background for contrast */
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  font-size: 1em;  /* Ensure consistent font size */
}

.styled-list li:last-child {
  margin-bottom: 0;  /* Remove margin from the last item */
}


.styled-list li:hover {
  background-color: #e0e0e0;  /* Slightly darker background on hover for interaction feedback */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);  /* Increase shadow on hover */
}


/**************************** STUDENT DASHBOARD */
.dashboard-container {
  font-family: 'Roboto', sans-serif;
  padding: 20px;
  display: grid;
  gap: 20px;
  justify-content: center;
}

.project-card {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff, #f7f7f7);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.project-card .header {
  border-bottom: 2px solid #e91c24;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.project-card h1 {
  font-size: 1.5rem;
  color: #333;
  margin: 0;
}

.year-term {
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
}

.supervisor {
  margin-bottom: 15px;
  font-size: 1rem;
  color: #444;
}

.status {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.status-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.status-item label {
  flex: 0 0 120px;
  font-weight: bold;
  color: #555;
}

.status-item .checkbox {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #ccc;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 0.85rem;
}

.status-item .checked {
  background: #4caf50; /* Green for checked */
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}



.submission-message {
  color: #333;
  font-size: 0.9rem;
  background: #f9f9f9;
  padding: 12px;
  border-left: 4px solid #e91c24;
  margin-top: 20px;
  border-radius: 5px;
}




/******************************************************* project page AREA *********/
/* Glassmorphism-inspired container */
.project-container {
  max-width: 950px;
  margin: auto;
  padding: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); /* Frosted glass shadow effect */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-container:hover {
  transform: scale(1.02); /* Subtle zoom effect */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

/* Gradient text for the title */
.project-title {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  background: linear-gradient(90deg, #e91c24, #ff5967);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; /* Gradient text */
}

/* Subtle animations for table */
.project-details-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 15px; /* Spacing between rows */
  animation: fadeIn 0.8s ease-in-out; /* Table fades in on load */
}

.project-details-table td {
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.7); /* Semi-transparent row background */
  /*border-radius: 12px; */
  font-family: 'Roboto', sans-serif;
  color: #333333;
  /*box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);*/
 /* transition: transform 0.2s ease, box-shadow 0.2s ease;*/
}

.project-details-table td:first-child {
  font-weight: 600;
  color: #444444;
  text-align: right;
}

/*
.project-details-table td:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
*/
/* Modern button design using the red color */
.reverseCoolRoundedButtonV2 {
  display: inline-block;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #e91c24, #ff5967); /* Red gradient button */
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.reverseCoolRoundedButtonV2:hover {
  transform: translateY(-2px); /* Lift effect */
  box-shadow: 0 5px 15px rgba(233, 28, 36, 0.4); /* Glowing effect */
}

/* animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Style for centered text */
.text-center {
  text-align: center;
  font-style: italic;
  color: #555555;
  font-family: 'Open Sans', sans-serif;
  padding: 15px;
}

.center-horizontally {
  display: block; 
  margin-left: auto; 
  margin-right: auto; 
  text-align: center;
  }



  /********** ADMIN PAGE */



.rounded_table {
border-radius: 30px;
overflow: hidden;
width: 100%;
margin: auto;
animation: fadeIn 0.8s ease-in-out;
}


.header-row {
background-color: #313131;
color: #ffffff;
font-weight: 200;
font-family:  Arial, Helvetica, sans-serif;
font-size: 1.1rem;

}

.header-row-first {
border-top-left-radius: 10px;
/* padding-left: 3vw;*/
}

.header-row-last {
border-top-right-radius: 10px;
/* padding-right: 3vw;*/
}


.row-even {
background-color: #f4f4f4;
}

.row-odd {
background-color: #ffffff;
}


.project_table {
border-collapse: collapse;
width: 100%;
margin: 0;
}


.rounded_table td, th {
width: 13%;
  padding: 1.5vw;
}

.normal_table_text{
color: #313131;
text-align: left;
}

.project_table .project_url {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  color: #cf112d;

  padding: 10px 20px; /* Set base padding to match the button size */
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease,  padding 0.3s ease; /* Explicitly list transitions */
}

.project_table tr.heightAdjustedRow {
  transition: all 0.3s ease;
}

.project_table tr.heightAdjustedRow:hover {
  transform: translateY(-5px); /* Raise the row */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Add subtle shadow */
}

.project_table tr.heightAdjustedRow a.project_url:hover {
  transform: translateY(-2px); /* Lift effect */
  box-shadow: 0 5px 15px rgba(233, 28, 36, 0.4); /* Glowing effect */
  
  padding: 10px 20px; /* Larger padding for button */
  border-radius: 50px;
  background: linear-gradient(90deg, #e91c24, #ff5967); /* Red gradient button */
  color: #ffffff;
  
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}


.project_filter_header{
  font-family:  Arial, Helvetica, sans-serif;
  font-weight: bold;  
  font-size: 1.5rem;
  margin-top: 0%;
  }
  
  
  .filter_label_text{
  font-weight: 700;
  font-size: 1.1rem;
  }



/*** STATS AREA */


.stats-container {
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 20px 0;
  background-color: #f4f4f4;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  .stats-box {
  
  margin: 15px 0
  
  }




/*** LOGIN AREA **/
.login-box {
  margin: auto;
  width: 400px;
  padding: 20px;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.login-box h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

.login-box label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

.login-box input {
  width: 90%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.login-box input::placeholder {
  text-align: center;
}

.login-box button {
  width: 90%;
  padding: 10px;
  
  border: none;
  border-radius: 4px;
  cursor: pointer;
}



/***************** NEW CLASSES FOR MAPPER ***************/
/* ----- CUMapperApp minimal skin ----- */
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",
     Arial,sans-serif;background:#f5f7fa;color:#333}
h1{font-size:1.9rem;font-weight:600;margin-bottom:1.5rem}
.container{max-width:940px;margin:60px auto;padding:0 20px}

/* directory list */
.dir-list{background:#fff;border-radius:8px;box-shadow:0 2px 4px rgba(0,0,0,.05)}
.dir-row{display:flex;justify-content:space-between;align-items:center;
         padding:12px 16px;border-bottom:1px solid #e2e8f0}
.dir-row:last-child{border-bottom:none}
.dir-info span{display:inline-block;min-width:120px;font-size:.9rem}

/* buttons */
.btn{border:none;padding:8px 14px;border-radius:6px;font-size:.85rem;
     color:#fff;cursor:pointer;transition:background .2s;text-decoration: none;}
.btn-primary{background:#2563eb}.btn-primary:hover{background:#1d4ed8}
.btn-danger {background:#dc2626}.btn-danger:hover {background:#b91c1c}
.add-new{margin-bottom:20px}


.card {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
}



.cardV2 {
  max-width:88%x;
  margin: 2rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
}


.hero-text {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #333;
}
.subhead {
  margin-bottom: 1.5rem;
  color: #666;
}

/* BUTTON ROW */
.button-container {
  display: flex;              /* lay out buttons in a row */
  gap: 1rem;                  /* space between them */
  justify-content: center;    /* center them horizontally */
  flex-wrap: wrap;            /* wrap on small screens */
}

/* EXISTING STYLES (just showing your previous classes) */
.coolRoundedButton,
.reverseCoolRoundedButton,
.submitEventButton {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* NEW GRADIENT BUTTON */
.submitEventButton {
  background: linear-gradient(45deg, #ff6b6b, #f94d6a);
  color: #fff;
}
.submitEventButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.form-field label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}





/***************** NEW CLASSES FOR IMAGE PREVIEW ***************/
.kiosk-preview {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9 / 16;     /* portrait kiosk */
  overflow: hidden;
  background: #000;
  border-radius: 24px;
}
.kiosk-user-image {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* ⬅️ was 'cover' */
  display: none;

  transform-origin: center center;
  --zoom: 1;
  --offset-x: 0%;
  --offset-y: 0%;
  transform: translate(var(--offset-x), var(--offset-y)) scale(var(--zoom));
}


/* Bezel frame */
.kiosk-frame {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 24px;

  border: 20px solid #111;
  box-shadow:
    0 0 25px rgba(0,0,0,0.8) inset,
    0 0 40px rgba(0,0,0,0.7);
  background: transparent;
}

/* Controls styling (optional / tweak as you like) */
.kiosk-controls {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.kiosk-control-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.25rem 0;
}

.kiosk-control-row label {
  min-width: 80px;
}
.image-guidelines-box {
  margin-top: 0.25rem;
  margin-bottom: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-left: 3px solid #ccc;
  background: transparent;
  font-size: 0.85rem;
  color: #444;
}

.image-guidelines-title {
  display: block;
  font-weight: 600;
  margin-bottom: 0.2rem;
  text-align: left;
}

.image-guidelines-list {
  margin: 0;
  padding-left: 1.1rem;
text-align: left;
}

.image-guidelines-list li {
  margin: 0.1rem 0;
}


/*************** NEW DASHBOARD CLASSES */

.dashboard-container {
    max-width: 1100px;
    margin: auto;
}

.summary-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.summary-card {
    background: #f4f6f8;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    text-align: center;
}

.summary-card h3 {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.summary-card .value {
    font-size: 32px;
    font-weight: bold;
}

.chart-container {
    margin-bottom: 40px;
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 220px;
    margin-top: 20px;
}

.bar-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bar {
    width: 30px;
    background: #2f80ed;
    border-radius: 4px 4px 0 0;
}

.bar-label {
    font-size: 11px;
    margin-top: 6px;
}

.bar-count {
    font-size: 11px;
    margin-bottom: 4px;
}

.events-table {
    width: 100%;
    border-collapse: collapse;
}

.events-table th,
.events-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.pagination {
    margin-top: 15px;
}