﻿.logo {
    height: 80px;
    aspect-ratio: 195 / 80;
    background-repeat: no-repeat;
    background-image: url("/images/Logo_tr.png");
    background-size: contain;
    background-position: center;
}

.stylish-btn {
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.stylish-btn:hover {
    background-color: #218838;
}

.stylish-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.7;
}

.stylish-btn:disabled:hover {
    background-color: #cccccc; /* This color will not change on hover when disabled */
}

.error-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: black;
    color: white;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    border-radius: 50%;
    cursor: pointer !important;
    user-select: none;
    margin-left: 5px;
    vertical-align: middle;
}


.scrollable {
    max-height: 400px; /* Limit the height and make it scrollable */
    overflow-y: auto; /* Enable vertical scrolling */
    border: 1px solid #ccc; /* Add a border for better visibility */
    padding: 20px;
    width: 85%; /* Set a specific width */
    margin: 20px auto; /* Centering the container */
    background-color: #f9f9f9; /* Light background for the container */
}

.success {
    background-color: #e2f4e4; /* Light green background for success */
}

.failure {
    background-color: #f8d7da; /* Light red background for failures */
}

.label {
    margin-right: 10px; /* Add space between the label and textbox */
    white-space: nowrap; /* Prevent the label from wrapping */
}

body.full-width-mode .content-wrapper {
    max-width: 100% !important;
    padding-top: 5px;
    /*    padding: 0 10px !important;
*/
}


