body {
    background-color: #FFFFFF;
}

h1 {
    font-family: Arial, sans-serif;
    font-size: 2em;
    color: black;
}

p {
    font-family: Arial, sans-serif;
    font-size: 1em;
    color: black;
}

input[type=submit] {
    padding: 10px;
    font-size: 15px;
    background-color: black;
    color: white;
    border: none;
}

input[type=file] {
    margin-top: 10px;
}

.header {
    display: flex;
    align-items: center;
}

.header h1 {
    margin-left: 40px;  /* adjust this value as needed */
}

.container-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;  /* viewport height */
}

.container-login {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
}

.alert-message {
    color: green;
}


.logo {
    width: auto;
    height: 50px;  /* Or whatever height you want */
}
.logo-text {
    font-size: 30px;    /* Adjust as needed */
    font-family: Brush Script MT, Papyrus;    /* Change to the font you want */
}

.white-link,
.white-link:hover,
.white-link:visited,
.white-link:focus,
.white-link:active {
    color: #ffffff !important;
}


/*for card*/

.mind-card {
  --img-scale: 1.001;
  --title-color: black;
  --link-icon-translate: -20px;
  --link-icon-opacity: 0;
  position: relative;
  border-radius: 16px;
  box-shadow: none;
  background: #fff;
  transform-origin: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.mind-card a::after {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  cursor: pointer;
  content: "";
}

.mind-card h2 {
  margin: 0 0 18px 0;
  font-family: "Bebas Neue", cursive;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--title-color);
  transition: color 0.3s ease-out;
}

.mind-card figure {
  margin: 0.2;
  padding: 0;
  aspect-ratio: 6 / 2;
  overflow: hidden;
}

.mind-card img {
  max-width: 100%;
  transform-origin: center;
  transform: scale(var(--img-scale));
  transition: transform 0.4s ease-in-out;
}

.mind-card-body {
  padding: 24px;
}

.mind-card a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #28666e;
}

.mind-card a:focus {
  outline: 1px dotted #28666e;
}

.mind-card a .icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  transform: translateX(var(--link-icon-translate));
  opacity: var(--link-icon-opacity);
  transition: all 0.3s;
}

.mind-card:has(:hover, :focus) {
  --img-scale: 1.1;
  --title-color: #28666e;
  --link-icon-translate: 0;
  --link-icon-opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.alert-success {
    background-color: #119928;
    margin: 10px; /* or whatever margin you want */
}

.alert-danger {
    background-color: #cc0c29;
    margin: 10px; /* or whatever margin you want */
}


.required {
        color: red;
    }


 .chat-icon {
            position: fixed;
            bottom: 20px;
            right: 20px;
            font-size: 2.5em;
            cursor: pointer;
            z-index: 999; /* ensure it's on top of other elements */
            background-color: #333; /* provide a background to make the icon stand out */
            border-radius: 50%; /* make it circular */
            padding: 10px; /* spacing around the icon */
            color: white; /* color of the icon */
        }

 .center-video {
    display: flex;
    justify-content: center;
    align-items: center;
}

.indent-video-text {
    padding-left: 60px;  /* Adjust the value as required */
}

.no-border-shadow {
    border: none !important; /* remove border */
    box-shadow: none !important; /* remove shadow */
}


#titleContainer, #titleContainer p {
    background-color: #0d39de;
    border-radius: 8px;
    color: #ffffff;
    padding: 10px;
}

#titleContainer h1 {
    color: #ffffff;
    text-align: center;
}

#form-card {
            background-color: #f8f8f8;
            border-radius: 8px;
            padding: 20px;
}

#start-stop-box {
            background-color: #f8f8f8;
            border-radius: 20px;
            padding: 10px;
}

.enhanced-card {
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .enhanced-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .rounded-circle-border {
        border: 3px solid #333;  /* Dark border around the image */
    }

    .big-title {
        font-size: 3em; /* Adjust this value for desired size */
        text-align: center;
        margin-bottom: 40px;
    }

    .medium-title {
        font-size: 1.5em; /* Adjust this value for desired size */
        text-align: center;
        margin-bottom: 40px;
    }

    .tutorial-videos iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}


    .modern-btn {
        background-color: #0d39de;
        padding: 15px 30px;
        border-radius: 50px;
        display: block; /* Block will allow us to use margin auto for centering */
        width: fit-content; /* Makes the width only as wide as its content */
        margin: 0 auto; /* This will center the button */
        color: #ffffff;
    }

    .modern-btn h1 {
        margin: 0; /* Removes any default margins from the h1 */
        color: #ffffff !important;
    }


    .modern-btn:hover {
        background-color: #304eb3;  /* Slightly darker shade for hover */
        transform: scale(1.05);
    }
    .modern-btn:active {
        transform: scale(0.95);
    }

    .icon-card {
    background-color: #0d39de;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #ffffff;
    height: 100%;
}

.icon-card img {
    width: 50%; /* Adjust based on desired size */
    margin-bottom: 20px;
}

.icon-card:hover {
    background-color: #304eb3;
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.icon-card i {
    background-color: #ffffff;
    color: #0d39de;
    border-radius: 50%;  /* Make it circular */
    padding: 20px;  /* Adjust the spacing around the icon */
    width: 60px;  /* Define width for the circle */
    height: 60px;  /* Define height for the circle */
    display: inline-flex;  /* Make the icon center inside the circle */
    align-items: center;  /* Vertical centering */
    justify-content: center;  /* Horizontal centering */
}

.icon-card p {
    color: #ffffff;  /* Setting the color to white */
}

.input-group {
    position: relative;  /* To allow absolute positioning within it */
}

#dictation-text {
    padding-right: 50px;  /* Padding to prevent text underneath the microphone button */
}


/* Style for the blue microphone button */
.btn-blue-mic {
    background-color: blue;  /* You mentioned "blue" but didn't specify a hex code. Adjust as needed. */
    border: none;
    color: white;  /* This will make the text (if any) inside the button white. */
}

/* Style for making FontAwesome icons inside the button white */
.white-icon {
    color: white;
}

.custom-login-btn {
        background-color: #007bff;  /* Default Bootstrap primary blue */
        border-color: #007bff;
        color: #fff; /* For white text */
    }

.custom-login-btn:hover, .custom-login-btn:active, .custom-login-btn:focus {
    background-color: #0056b3;  /* Slightly darker blue for hover and active states */
    border-color: #0056b3;
}


.custom-icon {
    font-size: 10em;  /* This makes the icon larger. Adjust the value as needed. */
    color: #0d39de;
    text-align: center;
    margin-top: 20px;
    display: block;  /* To allow for centering with text-align */
}


.icon-container {
    width: 100px;   /* Adjusted width of the container */
    height: 100px;  /* Adjusted height of the container */
    margin: 0 auto; /* Center the container */
    padding: 10px;  /* Adjusted padding around the icon */
    display: flex;  /* Using flex to center the icon both vertically and horizontally */
    align-items: center;
    justify-content: center;
    background-color: #ffffff;  /* Add background color */
    border-radius: 50%;         /* Make it circular */
}

.nav-link {
    color: black !important;
    font-weight: bold;
}

.nav-link:hover {
    color: #007BFF !important;
    font-weight: bold;
}

.scrollable-table {
    height: 400px; /* or any height you want */
    overflow-y: auto;
    display: block;
}

.btn-red {
    background-color: #FF0000; /* red color */
    color: #000; /* text color */
}
.btn-red:hover {
    background-color: #FFA3A3; /* slightly darker red for hover effect */
}

.btn-orange {
    background-color: #bf5319; /* orange color */
    color: #000; /* text color */
}
.btn-orange:hover {
    background-color: #b3460c; /* slightly orange for hover effect */
}

#termsOfUse,
#baaAgreement {
    transform: scale(1.5);
    margin-right: 10px;
    border: 2px solid #ffcccc; /* Light Red Border */
}

.text-center iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
}


.col-file-name {
    width: 20%; /* Adjust as needed */
}

.col-transcript {
    width: 60%; /* Adjust as needed */
}

.col-actions {
    width: 20%; /* Adjust as needed */
}
/* Flashing animation */
@keyframes flash {
    0%   {opacity: 1;}
    50%  {opacity: 0.5;}
    100% {opacity: 1;}
}

.button-submit {
    background-color: #007bff;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.button-submit:hover {
    background-color: #0056b3;
}

.file-upload {
    position: relative;
    overflow: hidden;
}

.file-upload input[type='file'] {
    position: absolute;
    font-size: 50px;
    opacity: 0;
    right: 0;
    bottom: 0;
}

.textarea-container {
    position: relative;
}

.textarea-container textarea {
    padding-bottom: 30px; /* Provides space at the bottom for the icon */
    padding-left: 50px; /* Adjust left padding to make space for text and icon */
}

.textarea-container i {
    position: absolute;
    bottom: 10px; /* Aligns the icon near the bottom of the textarea */
    left: 10px; /* Position adjusted to make room for text */
    font-size: 24px; /* Icon size, adjust if needed */
    color: #999; /* Icon color, adjust if needed */
}

.textarea-container span {
    position: absolute;
    bottom: 15px; /* Align with the icon */
    left: 35px; /* Position the text to the right of the icon */
    color: #666; /* Text color, adjust if needed */
    cursor: default;
}


.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.separator .line {
    flex-grow: 1;
    border: 0;
    height: 1px;
    background-color: #a5a5a5;
}

.separator .or {
    padding: 0 10px;
    color: #6c757d;
    font-weight: bold;
}

/* Modal styling */
/* Modal styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4); /* Dark semi-transparent background */
    justify-content: center; /* Center the modal */
    align-items: center; /* Center the modal */
    padding-top: 2px; /* Add top padding to ensure the modal is centered */
}

.modal-content {
    background-color: #fff; /* White background */
    margin: auto;
    padding: 10px;
    border: 1px solid #888;
    width: 100%; /* Adjust width as needed */
    max-width: 800px; /* Maximum width */
    display: flex; /* Use flexbox */
    flex-direction: column; /* Ensure column layout */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Optional: add some shadow for better visibility */
    position: relative; /* Ensure the close button is positioned correctly */
    padding-top: 2px; /* Add padding to the top of the modal content */
}

.close {
    color: #000000;
    position: absolute;
    top: 1px; /* Adjust as needed */
    left: -1px; /* Position on the left side */
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

iframe {
    width: 100%; /* Make iframe width responsive */
    height: 400px; /* Set a fixed height to increase the height compared to the width */
}


.btn-custom {
    background-color: #ece8e8;
    border: 2px solid #4B0082; /* Indigo color for the border */
    color: #0c0c0c; /* Indigo color for the text */
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px; /* Adjust for rounded corners */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-custom:hover {
    background-color: #4B0082; /* Indigo color for hover background */
    color: #fff; /* White color for hover text */
}

.collapsible-header {
    font-size: 1.5rem; /* Similar to h1 size */
    font-weight: bold;
    display: inline-block; /* Fit to content */
    padding: 0.5rem 1rem;
    background-color: #f8f9fa; /* Light background color */
    border: none;
    outline: none;
    cursor: pointer; /* Pointer cursor to indicate clickability */
}

.collapsible-container {
    margin-bottom: 1rem;
}





