﻿/* 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. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* 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%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 0px;
    color: #000000;
    font-family: Arial, sans-serif;

}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
}
.nav-link-border {
    border: 1px solid #f8f9fa;
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
}
.u-border-box {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 1px 4px #c1c1c11a;
    color: #1c2835;
    display: block;
    padding: 1.0rem;
}
.u-border-row{
    background-color: #fff;
    
    box-shadow: 0 1px 4px #c1c1c11a;
    color: #1c2835;
   
    padding: 1.0rem;
}

@keyframes blink {
    0% {
        background-color: #ad2209;
    }

    50% {
        background-color: #c17fcb;
    }

    100% {
        background-color: #ad2209;
    }
}

.unique-button {
    animation: blink 1s infinite;
    transition: none; /* Ensures no transition on hover */
}

    .unique-button:hover {
        animation: none;
        background-color: #ff6347; /* Optional: Define a stable color on hover */
    }

.custom-hr {
    border: 0px;
    height: 1.0px;
    background-color: #c6cedd;
    margin: 2px 0;
}
.paragraph-custom{
    justify-content:normal
}
.background-custom {
    background: #f2f2f2
}

/* General Custom Row Layout */
.custom-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.custom-col {
    flex: 1; /* Ensures columns share equal width */
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Upload File Group */
.custom-upload-file-group {
    display: flex;
    flex-direction: column;
    gap: 0.0rem;
}

.custom-file-input-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.custom-file-size-label {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Upload Pic Group */
.custom-upload-pic-group {
    display: flex;
    flex-direction: column;
    gap: 0.0rem;
}

.custom-pic-input-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.custom-image-preview {
    width: 100px;
    height: 50px;
    border: 2px solid #ccc;
    border-radius: 5px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .custom-image-preview img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Custom Form Control */
.custom-form-control {
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

/* Custom Validation Classes */
.custom-text-danger {
    font-size: 0.875rem;
    color: #dc3545;
}

.custom-progress-bar-animated {
    animation: progress-bar-stripes 1s linear infinite;
}

.description {
    display: -webkit-box;
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; 
    line-height: 1.5em; 
    max-height: 6em; 
    word-break: break-word;
}
.single-line-truncate {
    display: inline-block;
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    max-width: 100%; 
}
.whatsapp-float {
    position: fixed;
    bottom: 80px; /* Adjust as needed */
    right: 20px;
    background-color: rgb(154, 237, 111, 0.80); /* WhatsApp Green */
    color:dark;
    font-size: 65px;
    width: 65px;
    height: 65px;
    
    text-align: center;
    line-height: 65px;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
   

}

    .whatsapp-float:hover {
        transform: scale(1.1);
        background-color: #1ebe57; /* Slightly darker green */
    }


.hidden {
    opacity: 0;
    pointer-events: none;
}