﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

.navbar {
    font-size: 24px;
    
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
    
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
    
}

/* Sticky footer styles
-------------------------------------------------- */
html {
    position: relative;
    min-height: 100%;
}

/* Other CSS rules... */

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    font-family: Calibri ;
    /* ADD THIS LINE to set the background color you want */
    background-color: #ffffff; /* This sets it to white */
    /* Or use another color like: background-color: #f8f9fa; (light gray) */
}


.footer {
    background-color: #040e57; /*#343a40*/ /* Set background to black */
    color: #cccccc; /* Set the default text color to light gray */
    border-top: 1px solid #333333; /* Replace the light border with a dark one */
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    /* Set the fixed height of the footer here */
    height: 60px;
    line-height: 60px; /* Vertically center the text there */
}
    .footer a {
        color: #040e57; /*#ffffff;*/
    }

.center-image {
    width: 300px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    border: 2px solid #ddd; /* Add a border (adjust color as needed) */
    border-radius: 10px; /* Rounded corners (optional) */
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2); /* Add a shadow (adjust values) */
}

.body[dir="rtl"] .card-header {
    text-align: right;
}
.custom-card {
    border: 1px solid #e1e1e1; /* A softer border than 'outset' */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* A soft, modern shadow */
    cursor: pointer;
    padding: 20px;
    transition: all 0.2s ease-in-out; /* Adds a smooth effect on hover */
}

    /* Optional: Make the shadow bigger on hover to show it's interactive */
    .custom-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }