﻿/*Body
----------------------------------------------------------*/
body {
    margin: 10px 30px;
    background: white;
    font-size: 14px;
    font-family: Tahoma, Arial, sans-serif;
    color: #5B5B5B;
}

/* Primary layout elements   
----------------------------------------------------------*/
.header {
    display: flex;
    align-content: center;
    justify-content: space-between;
    padding: 0px 10px 0px 10px;
    color: #0056b3;
}

.warning {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10px 10px 10px;
    color: blue;
}

.footer {
    color: gray;
    padding: 8px 0px 0px 0px;
    margin: 0px auto;
    text-align: center;
    line-height: 20px;
}

.Table_Caption {
    font-size: small;
    font-weight: bold;
    width: 120px;
}

/* TAB MENU   
----------------------------------------------------------*/
.activeTab {
    width: 180px;
    border: 2px solid #0078D7;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #f4f6f9;
    color: #000080;
    font-weight: bold;
    text-align: center;
    padding: 5px;
}

.inactiveTab {
    width: 180px;
    border: 2px solid gray;
    border-radius: 8px;
    background-color: gray;
    color: white;
    padding: 5px;
}

.tabWidth {
    width: 180px;
}

.tabBar {
    width: 1000px;
    text-align: left;
    border-radius: 8px;
    border-color: #000080;
    border-bottom-style: double;
    border-bottom-width: medium;
    background-color: lightgray;
}

/* GridView Style
----------------------------------------------------------*/

.GV_header {
    color: white;
    background-color: #0056b3;
    font-size: small;
    padding: 5px;
}

.GV_header a {
    color: white;
}

.GV_textbox {
    width: 90px;
}

.GV_pager td {
    width: 15px;
    padding-left: 4px;
    padding-right: 4px;
}

.GV_pager td a, .GV_pager td span {
    display: inline-block;
    height: 15px;
    width: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    padding-left: 4px;
    padding-right: 4px;
}

.GV_pager td a {
    background-color: #f5f5f5;
    color: #969696;
    border: 1px solid #969696;
}

.GV_pager td span {
    background-color: #A1DCF2;
    color: #000;
    border: 1px solid #3AC0F2;
}

ContentPlaceHolder1_gv_po_shipment table tbody tr td:nth-child(9) {
    width: 200px; /* Item description */
}

/* Textbox
----------------------------------------------------------*/
.likeLabel {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    padding: 0px !important;
}

/* Login
----------------------------------------------------------*/

.login-panel {
    width: 530px;
    height: 320px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background-color: #fff;
    transition: opacity 0.5s ease-in-out;
    text-align: center;
}

.login-instruction {
    margin: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.logout-instruction
{
    margin: 10px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.form-label-td {
    padding-left: 30px;
}

.form-label {
    vertical-align: middle;
    margin: 5px 0px 5px 0px;
    font-size: 15px;
    color: #555;
}

.form-textbox {
    margin: 5px;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    width: 200px;
}

input::-ms-reveal {
    display: block;
}

.btn-primary {
    background-color: #0056b3;
    border: none;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #007bff;
}

.btn-secondary {
    background-color: lightgray;
    padding: 5px;
    color: darkblue;
    border-radius: 5px;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #007bff;
    color: white;
}

.btn-Settings {
    background-color: #0052cc;
    color: white;
    border: none;
    padding: 5px;
    margin: 5px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.5s ease-out, transform 0.5s ease-out;
}

.btn-Settings:hover {
    background-color: #003d99;
    transform: scale(1.1);
}

.btn-link {
    background: none!important;
    border: none;
    padding: 0!important;
    margin-top: 10px;
    font-size: 12px;
    color: #007bff;
    text-decoration: underline;
}