@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --linear-gradient: linear-gradient(135deg, #000000, #0f2f5c);
    /* --linear-gradient: linear-gradient(135deg, #001839, #0f2f5c); */
    --radial-gradient: radial-gradient(circle, #000000, #344037);
    --primary: #0f2f5c;
    /* Dark blue */
    --black: #000000;
    --overlay: rgba(255, 255, 255, 0.05);
}

/* General Styles */
body {
    background: var(--linear-gradient);
    color: white;
    font-family: 'Poppins', sans-serif;
}

.bg-kiray360 {
    /* background: var(--linear-gradient); */
    background-color: rgba(255, 255, 255, 0.05);
}

/* Custom Alert Styles */
.alert-success-kiray {
    background-color: var(--primary);
    /* #0f2f5c for success */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.alert-success-kiray:hover {
    background-color: #1a4a8a;
    transition: all ease-in-out 0.3s;
    /* Lighter blue on hover */
}

.alert-error-kiray {
    background-color: rgba(255, 0, 0, 0.2);
    /* Red overlay on dark base */
    color: #ffffff;
    border: 1px solid rgba(255, 0, 0, 0.4);
}

.alert-error-kiray:hover {
    background-color: rgba(255, 0, 0, 0.3);
    transition: all ease-in-out 0.3s;
    /* Slightly stronger red on hover */
}

.alert-info-kiray {
    background-color: var(--overlay);
    /* rgba(255, 255, 255, 0.05) for info */
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.alert-info-kiray:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transition: all ease-in-out 0.3s;
    /* Slightly brighter on hover */
}

.alert-warning-kiray {
    background-color: rgba(255, 165, 0, 0.2);
    /* Orange overlay on dark base */
    color: #ffffff;
    border: 1px solid rgba(255, 165, 0, 0.4);
}

.alert-warning-kiray:hover {
    background-color: rgba(255, 165, 0, 0.3);
    transition: all ease-in-out 0.3s;

    /* Slightly stronger orange on hover */
}

/* Ensure close button visibility */
.alert .btn-close {
    filter: invert(1);
    /* Makes it white for contrast */
}

#loadingScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--linear-gradient);
    z-index: 9999;
}

/* Utility Classes */
.vh-80 {
    height: 80svh;
}

.vh-90 {
    height: 90svh;
}

.vh-100 {
    height: 100svh;
}

.min-vh-90 {
    min-height: 90svh;
}

.shadow-xl {
    box-shadow: 0 2rem 3rem rgb(0 0 0 / 32%) !important;
}

.shadow-y-xl {
    box-shadow: 0 2rem 13rem rgb(0 0 0 / 32%) !important;
}

.text-justify {
    text-align: justify;
}

.placeholder-light::placeholder {
    color: white !important;
}

.alert-error {
    background-color: #fccfcf !important;
}

.unselectable {
    -webkit-user-select: none;
    /* Safari 3.1+ */
    -moz-user-select: none;
    /* Firefox 2+ */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
    /* Standard syntax */
}

.feature-icon {
    color: #1d4071;
}

.feature-icon:hover {
    transition: all ease-in-out 0.3s;
    color: #1a4a8a;
}