﻿/* Add application specific styles here */
bodymain {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.login-container {
    display: flex;
    width: 90vw;
    height: 80vh;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.left-section {
    flex: 1;
    background-image: url("..\\img\\ArtemisLandingPage3.png");
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
}

.overlay-text {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #333;
    font-size: 1.2rem;
    font-weight: 400;
}

    .overlay-text span {
        color: #fdd835;
        font-size: 1.5rem;
    }

.right-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    margin-right: 10px;
}

.logo-text {
    font-size: 42px;
    font-weight: 700;
    color: #333;
}

.hello {
    font-size: 96px;
    font-weight: 700;
    color: #333;
    margin: 12px 0;
    text-align: center;
}

.welcome {
    font-size: 25px;
    font-weight: 200;
    color: #666;
    margin-bottom: 18px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.form-control,
.btn {
    border-radius: 5px;
    border: 1px solid #ccc;
    padding: 15px;
    font-size: 1rem;
    width: 100%;
    max-width: 400px;
    height: 50px;
    box-sizing: border-box;
}

.form-control {
    margin-bottom: 20px;
}

.btn-Signin {
    background-color: #fdd835;
    color: #666;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

    .btn:hover {
        background-color: #e6c200;
    }

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        width: 100vw;
        height: auto;
    }

    .left-section {
        height: 200px;
    }

    .right-section {
        padding: 20px;
    }

    .form-control,
    .btn {
        width: 100%;
        font-size: 0.9rem;
    }

    .hello {
        font-size: 2.5rem;
    }

    .welcome {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hello {
        font-size: 2rem;
    }

    .welcome {
        font-size: 0.9rem;
    }

    .form-control,
    .btn {
        padding: 12px;
        font-size: 0.8rem;
    }
}



.News-refresh-button {
    display: flex; /* Use flex to center the image */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    width: 55px; /* Set width for the button */
    height: 46px; /* Set height for the button */
    background-color: #DC3545; /* Button background color */
    border: none; /* Remove default border */
    border-radius: 22%; /* Fully rounded corners for a circular button */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
}

    .News-refresh-button:hover {
        background-color: #B64D45; /* Darker background color on hover */
    }

    .News-refresh-button:active {
        background-color: #DC3545; /* Even darker background color on active */
    }

.News-refresh-button-image {
    width: 24px; /* Set size of the icon */
    height: 24px;
}


body {
    color: #566787;
    background: #f5f5f5;
    font-family: 'Varela Round', sans-serif;
    font-size: 13px;
}

.table-responsive {
    margin: 3px 0;
}

.table-wrapper {
    min-width: 1000px;
    background: #fff;
    padding: 20px 25px;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

    .table-wrapper .btn {
        float: right;
        color: #333;
        background-color: #fff;
        border-radius: 3px;
        border: none;
        outline: none !important;
        margin-left: 10px;
    }

        .table-wrapper .btn:hover {
            color: #333;
            background: #f2f2f2;
        }

        .table-wrapper .btn.btn-primary {
            color: #fff;
            background: #03A9F4;
        }

            .table-wrapper .btn.btn-primary:hover {
                background: #03a3e7;
            }

.table-title .btn {
    font-size: 13px;
    border: none;
}

    .table-title .btn i {
        float: left;
        font-size: 21px;
        margin-right: 5px;
    }

    .table-title .btn span {
        float: left;
        margin-top: 2px;
    }

.table-title {
    color: #fff;
    background: #4b5366;
    padding: 16px 25px;
    margin: -20px -25px 10px;
    border-radius: 1px 1px 0 0;
}

    .table-title h2 {
        margin: 5px 0 0;
        font-size: 24px;
    }

.show-entries select.form-control {
    width: 60px;
    margin: 0 5px;
}

.table-filter .filter-group {
    float: right;
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px
}

.table-filter input, .table-filter select {
    height: 30px;
    border-radius: 3px;
    border-color: #ddd;
    box-shadow: none;

}

.table-filter {
    padding: 5px 0 8px;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 5px;
}

    .table-filter .btn {
        height: 34px;
    }

    .table-filter label {
        font-weight: normal;
        margin-left: 10px;
    }

    .table-filter select, .table-filter input {
        display: inline-block;
        margin-left: 5px;
    }

    .table-filter input {
        width: 200px;
        display: inline-block;
    }

.filter-group select.form-control {
    width: 110px;
}

.filter-icon {
    float: right;
    margin-top: 7px;
}

    .filter-icon i {
        font-size: 18px;
        opacity: 0.7;
    }

table.table tr th, table.table tr td {
    border-color: #e9e9e9;
    padding: 12px 15px;
    vertical-align: middle;
    position: sticky;
}

    table.table tr th:first-child {
        width: 60px;
        position: sticky;
    }

    table.table tr th:last-child {
        width: 80px;
        position: sticky;
    }

table.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fcfcfc;
}

table.table-striped.table-hover tbody tr:hover {
    background: #f5f5f5;
}

table.table th i {
    font-size: 13px;
    margin: 0 5px;
    cursor: pointer;
    position: sticky;
}

table.table td a {
    font-weight: bold;
    color: #566787;
    display: inline-block;
    text-decoration: none;
}

    table.table td a:hover {
        color: #2196F3;
    }

    table.table td a.view {
        width: 30px;
        height: 30px;
        color: #2196F3;
        border: 2px solid;
        border-radius: 30px;
        text-align: center;
    }

        table.table td a.view i {
            font-size: 22px;
            margin: 2px 0 0 1px;
        }

table.table .avatar {
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
}

.status {
    font-size: 30px;
    margin: 2px 2px 0 0;
    display: inline-block;
    vertical-align: middle;
    line-height: 10px;
}

.text-success {
    color: #10c469;
}

.text-info {
    color: #62c9e8;
}

.text-warning {
    color: #FFC107;
}

.text-danger {
    color: #ff5b5b;
}

.pagination {
    float: right;
    margin: 0 0 5px;
}

    .pagination li a {
        border: none;
        font-size: 13px;
        min-width: 30px;
        min-height: 30px;
        color: #999;
        margin: 0 2px;
        line-height: 30px;
        border-radius: 2px !important;
        text-align: center;
        padding: 0 6px;
    }

        .pagination li a:hover {
            color: #666;
        }

    .pagination li.active a {
        background: #03A9F4;
    }

        .pagination li.active a:hover {
            background: #0397d6;
        }

    .pagination li.disabled i {
        color: #ccc;
    }

    .pagination li i {
        font-size: 16px;
        padding-top: 6px
    }

.hint-text {
    float: left;
    margin-top: 10px;
    font-size: 13px;
}
