﻿.logo {
    width: 195px;
    height: 40px;
    position: relative;
    background-repeat: no-repeat;
    background-image: url("/images/Logo_tr.png");
    background-size: 100% 100%;
    /*  transform-style:preserve-3d*/
}

.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 */
        }

/* Progress bar container */
.progress-container {
    width: 100%;
    background-color: #eee;
    padding: 3px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Actual progress bar */
.progress-bar {
    height: 20px;
    background-color: #4CAF50;
    width: 0%;
    border-radius: 5px;
    text-align: center;
    line-height: 20px; /* Same as height, centers text vertically */
    color: white;
    transition: width 0.4s ease-in-out;
}

#refreshPage {
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: #007bff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}

#refreshPage:hover {
background-color: #0056b3;
}

#GenerateCSVFiles {
padding: 10px 20px;
font-size: 16px;
color: white;
background-color: #007bff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}

#GenerateCSVFiles:hover {
background-color: #0056b3;
}

#error_message {
    display: inline-block; 
}

.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; 
}


.status-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    color: white;
    background-color: black; 
    cursor: pointer;
    user-select: none;
    vertical-align: middle;
}

.status-icon.success {
    background-color: green; 
    content: "✓"; 
}

.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 */
}

.file-item {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

.success {
    background-color: #e2f4e4; /* Light green background for success */
}

.failure {
    background-color: #f8d7da; /* Light red background for failures */
}

.filename {
    font-weight: bold;
}

.form-inline {
        display: flex; /* To ensure both label and input stay on the same line */
        align-items: center; /* Vertically align them */
    }
.label {
    margin-right: 10px; /* Add space between the label and textbox */
    white-space: nowrap; /* Prevent the label from wrapping */
}
