/* base_ltr.css */

/* Reset some elements for LTR */
body {
    direction: ltr;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
}

.container {
    flex: 1;
}

/* Sticky Footer */
footer {
    text-align: left;
    margin-top: auto;
    background-color: #f8f9fa; /* Example background color */
    padding: 10px;
    width: 100%;
    position: sticky;
    bottom: 0;
}

/* Navigation */
.navbar {
    text-align: left;
}

.navbar-nav {
    float: left;
}

.navbar-nav .nav-item {
    margin-right: 10px;
    margin-left: 0;
}

.navbar-brand {
    float: left;
    margin-left: 20px;
}

/* Form elements */
.form-group {
    text-align: left;
}

input, textarea, select {
    text-align: left;
}

/* Tables */
.table th,
.table td {
    text-align: left;
}

/* Buttons */
.btn {
    float: left;
    margin-right: 10px;
    margin-left: 0;
}

/* Align icons or images properly */
.icon {
    float: left;
    margin-right: 10px;
    margin-left: 0;
}

/* Custom overrides */
.custom-class {
    padding-left: 15px;
    padding-right: 0;
}

/* LTR-specific adjustments for Bootstrap components */
.dropdown-menu {
    left: 0;
    right: auto;
}

.carousel-caption.text-end h2, .carousel-caption.text-end p {
    background-color: rgba(0, 0, 0, 0.7); /* Black background with 70% opacity */
    padding: 10px; /* Add some padding for spacing */
    display: inline-block; /* Ensure the background only covers the text */
    border-radius: 5px; /* Slightly rounded corners */
    color: yellow; /* Set the text color to yellow */
    text-align: left; /* Ensures text within the element is aligned to the right */
}

/* Optional: Apply this if you want to right-align the whole caption block */
.carousel-caption.text-end {
    left: 10;
    text-align: left;
}

.carousel-caption.text-start h2, .carousel-caption.text-start p {
    background-color: rgba(0, 0, 0, 0.7); /* Black background with 70% opacity */
    padding: 10px; /* Add some padding for spacing */
    display: inline-block; /* Ensure the background only covers the text */
    border-radius: 5px; /* Slightly rounded corners */
    color: yellow; /* Set the text color to yellow */
    text-align: center; /* Ensures text within the element is aligned to the left */
}

/* Optional: Apply this if you want to left-align the whole caption block */
.carousel-caption.text-start {
    left: 10;
    text-align: left;
}