.container-iframe {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

iframe {
    border-width: 0px !important;
}

.col-sm {
	padding: 10px;
}

.scheduleTable {
    text-align: center;
    vertical-align: middle;
}

.scheduleTable th {
    min-width: 43.41px;
}

.login-footer {
    margin-top: 120px;
}

.splash-logo {
    padding-right: 40px;
}

.dashboard-text {
    font-weight: 400;
    font-size: 1.2rem;
}

.list-inline-item {
	padding: 15px;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
    min-width: 1600px;
}

body {
    margin-bottom: 80px; /* Margin bottom by footer height */
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px; /* Set the fixed height of the footer here */
    line-height: 80px; /* Vertically center the text there */
    
}
  /* Sticky footer styles
  -------------------------------------------------- */
  
.vertical-line {
    border-left: 2px solid black;
    height: 45px;
    position: absolute;
    left: 50%;
    top: 25px; 
}

/* Login form input styling */
#username,
#password {
    width: 500px;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 2px solid #212529;
    border-radius: 15px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

#username:focus,
#password:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

#username::placeholder,
#password::placeholder {
    color: #6c757d;
    opacity: 0.7;
}
