﻿/* Toàn bộ vùng Region ShipperBan */
#ShipperBan div.MainMenu {
    text-align:center;
}
#ShipperBan div.MainMenu a {
    display:inline;
    margin-right:30px;
    font-size: 16px;
}
#ShipperBan div.MainMenu a.AddShipper:hover {
    color:orange;
    text-decoration:underline;
}
#ShipperBan form.InputForm {
    display:none;
    margin-top:30px;
}
#ShipperBan div.Region.ShipperBan {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
}

/* Tiêu đề */
#ShipperBan div.Region.ShipperBan h1 span {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* Vùng chứa toàn bộ */
#ShipperBan div.SearchRegion {
    width: 100%;
    max-width: 600px; /* giới hạn chiều rộng */
    margin: 20px auto; /* canh giữa trang */
    padding: 15px 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

/* Dòng 1: input keyword */
#ShipperBan input.Keyword {
    width: 100%;
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#ShipperBan input.Keyword:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
    outline: none;
}

/* Dòng 2: dropdown + button */
#ShipperBan div.SearchOptions {
    margin-top: 12px;
    display: flex;
    gap: 10px;
}

/* Dropdown */
#ShipperBan select.SearchDropdown {
    flex: 1; /* chiếm hết không gian còn lại */
    padding: 10px 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#ShipperBan select.SearchDropdown:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
    outline: none;
}

/* Nút tìm kiếm */
#ShipperBan button.SearchButton {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

#ShipperBan button.SearchButton:hover {
    background-color: #0056b3;
    transform: translateY(-1px);
}

#ShipperBan button.SearchButton:active {
    transform: translateY(0);
}


/* Form input */
#ShipperBan form.InputForm input {
    font-size:16px;
}
#ShipperBan form.InputForm textarea {
    font-size:16px;
}
#ShipperBan form.InputForm input[type=submit] {
    font-weight:bold;
}
#ShipperBan div.Region.ShipperBan form .form-group {
    margin-bottom: 15px;
}

#ShipperBan div.Region.ShipperBan form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

#ShipperBan div.Region.ShipperBan form input.form-control {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

/* Nút submit */
#ShipperBan div.Region.ShipperBan form .btn {
    background-color: #0056b3;
    color: #fff;
    border: none;
    padding: 10px 16px;
    border-radius: 5px;
    cursor: pointer;
}

#ShipperBan div.Region.ShipperBan form .btn:hover {
    background-color: #0056b3;
}

/* Ảnh đại diện */
#ShipperBan div.Region.ShipperBan .AnhDaiDien img.AnhDaiDien {
    width: 150px;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
    display: block;
}


div.ShipperBanInfo {
    /*display: flex;*/
    display: none;
    align-items: flex-start;
    gap: 20px;
}

div.ShipperBanInfo div.CotTrai {
    flex: 0 0 300px;
}

div.ShipperBanInfo div.CotPhai {
    flex: 1;
}

div.ShipperBanInfo div.Field {
    margin-bottom: 10px;
}

div.ShipperBanInfo div.Field span.Label {
    font-weight: bold;
    display: inline-block;
    width: 100px;
}

div.ShipperBanInfo div.Field span.Value {
    color: #333;
}


#ShipperBan div.AnhDaiDien {
    padding-left:10px;
}
#ShipperBan img.AnhDaiDien {
    width: 300px;
    height: auto;
    object-fit: contain;
    display: block;
    margin-bottom:10px;
}
#ShipperBan button.ChonAnh {
    margin-bottom:10px;
}

#ShipperBan div.MsgBox {
    text-align: center;
    padding: 30px 30px;
    font-size: 24px;
    color: #4271c1;

    border: 2px solid #4271c1;
    border-radius: 8px;        /* Bo góc */
    background: #f3f8ff;       /* Nền nhẹ */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);  /* Đổ bóng */
    width: fit-content;
    margin: 20px auto;         /* Canh giữa */
}

#ShipperBan div.ShipperList a.ObjImage {
    width:50%;
}
#ShipperBan div.ShipperList a.ObjImage:before {
    content: "";
    display: block;
    padding-top: 110%;
}
#ShipperBan div.ShipperList div.ObjSummary {
    color:red;
}