/* My codes */

* {
    margin: 0;
    padding: 0;
}

body {
    background: black;
}

pre {
    color: white;
}

body,
a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

#add {
    background-color: #2a2a2a;
    display: grid;
    justify-items: center;
    position: relative;
    color: white;
    cursor: pointer;
}

#add i {
    font-size: 2rem;
    padding: 40px 0;
}
#add span {
    text-align: center;
    font-size: 0.9rem;
    position: absolute;
    top: 55%;
    transform: translate(0, 50%);
}
#success {
    color: green;
}


.container {
    width: 90%;
    margin: auto;
    font-family: 'Poppins', sans-serif;
    margin-top: 20px;
    color: white;
}


header {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    position: sticky;
    top: 0;
    z-index: 9;
}

.dropbtn {
    background: none;
    color: white;
    border: none;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #343333;
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a:hover {
    background-color: #202020;
}

.dropdown-content a {
    font-size: 13px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn,
nav ul li:hover,
.logout-btn:hover {
    background-color: #202020;
}


/* nav bar*/


nav {
    height: 50px;
    background: black;
    width: 100%;
    margin: auto;
}


.logo {
    font-size: 30px;
    float: left;
    margin-left: 5%;
    line-height: 37px;
    margin-top: 1px;
    margin-bottom: 1px;
}

.logo a {
    display: block;
    padding: 0 10px;
    border: solid 3px white;
    color: white;
    font-weight: 600;
}

.logo span {
    font-size: 15px;
    color: red;
}

nav ul {
    float: right;
    margin-right: 5%;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    display: block;
    color: white;
    background: black; 
    line-height: 50px;
    font-size: 16px;
    padding: 0 10px;
}
nav ul li a:hover {
    background: #2e2e2e; 
}

nav ul .shop-btn {
    background: #343333;
}

.logout-btn {
    display: none;
    border: none;
    height: 50px;
    background: white;
    text-align: center;
    width: 100%;
}


/* toggle button */
.toggle-button {
    position: absolute;
    top: 10px;
    right: 17px;
    flex-direction: column;
    width: 30px;
    height: 30px;
    float: right;
    display: none;
}

.toggle-button .bar {
    height: 10px;
    width: 100%;
    background-color: white;
    border-radius: 5px;
    margin: 2px 0;
}




.admin-form p {
    color: black;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    padding-bottom: 30px;
}


.login-form p {
    color: red;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    padding-bottom: 30px;
}

.admin-form,
.login-form {
    margin: 20px auto;
    text-align: center;
    width: 40%;
    background: #0e0e0e;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.login-form {
    margin-top: 100px;
}


.admin-form input[type=text],
.admin-form [type=password],
.login-form input[type=text],
.login-form [type=password],
.profile input[type=password],
.profile input[type=number],
.profile input[type=text] {
    margin: 15px auto;
    display: block;
    height: 50px;
    width: 70%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: white;
    background-color: black;
}

.admin-form button[type=submit],
.login-form button[type=submit] {
    background-color: #191919;
    padding: 12px 20px;
    border: none;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
    margin-top: 20px;
    font-weight: 600;
}

.admin-form button[type=submit]:hover,
.login-form button[type=submit]:hover {
    background-color: #020202;
}




.login-form h2,
.admin-form h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    padding: 20px 0;
    text-transform: uppercase;
}



/* Dash Board */

.user-visits {
    width: 100%;
    background-color: #343333;
    margin: 20px 0;
    display: inline-block;
    text-transform: uppercase;
}

.total-users a {
    color: white;
}

.total-users,
.total-visits {
    font-family: 'Poppins', 'Poppins', sans-serif;
    text-align: center;
    width: 50%;
    font-size: 40px;
    line-height: 60px;
    padding: 15px 0;
}

.total-users {
    float: left;
}

.total-visits {

    float: right;
}

.orders {
    display: inline-block;
    width: 100%;
    background-color: #343333;
    height: 50px;
    margin-top: 15px;
    border: solid 3px #666665;
    border-radius: 5px;
    box-sizing: border-box;
}

.orders a {
    font-size: 25px;
    color: white;
    display: block;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.orders h2,
.orders h3 {
    padding: 0 15px;
}

.orders h2 {
    float: left;
}

.orders h3 {
    float: right;
}

.msg-count {
    color: red;
}


/* Style the links inside the sidenav */

.side-cont {
    position: relative;
    background: #343333;
    width: 20%;
    float: left;
    border-radius: 5px;
    padding-bottom: 20px;
    border: solid 1px rgba(0, 0, 0, 0.432);
}

.side-bar-right {
    float: right;
    width: 75%;
    margin-left: 4%;
}

#mySidenav li {
    padding: 20px 10px;
    list-style: none;
}

#mySidenav a {
    position: absolute; /* Position them relative to the browser window */
    transition: .5s; /* Add transition on hover */ /* 15px padding */
    width: 300px; /* Set a specific width */
    text-decoration: none; /* Remove underline */
    font-weight: 600;
    font-size: 20px; /* Increase font size */
    color: white; /* White text color */
    left: 20px;
    display: block;
}
  
  #mySidenav a:hover {
    left: 40px; /* On mouse-over, make the elements appear as they should */
  }
  

/* Product manager */

.grid-box a {
    text-decoration: none;
    color: white;
    font-family: 'Poppins', sans-serif;
    margin: 10px;
    display: block;
}


.grid-box {
    display: inline-block;
    border: solid 1px #ddd;
    width: 45%;
    height: 120px;
    text-align: center;
    margin: 20px auto;
}

.grid-box a .fas {
    font-size: 50px;
    margin-top: 15px;
}


.grid-manager {
    margin: auto;
    text-align: center;
    background: black;
    margin-top: 20px;
    border: solid 1px #ddd;
    width: 80%;
}

/* add products */


.product-input {
    margin: 5px 5%;
}
.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    width: 100%;
}

.product-image {
    width: 100%;
    background: #e4e4e49e;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    align-items: end;
    cursor: pointer;
    padding: 25px 5px 0px;
    box-sizing: border-box;
    gap: 30px;
}

.upload {
    height: 20px;
    font-size: 0.7rem;
    padding: 10px;
    text-align: center;
    display: grid;
    place-items: center;
}

.img_container {
    width: auto;
    height: max-content;
}


.delete_btn {
    width: 100%;
    background: red;
    color: white;
    padding: 10px;
    cursor: pointer;
    border: none;
    outline: none;
}


.img_container img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    cursor: move;
}


.add-container {
    background: #0a0a0a;
    border: solid 1px #ddd;
    width: 80%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.add-container label {
    font-size: .9rem;
}

.image-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    justify-content: space-around;
    margin: 10px 5%;
}


.preview {
    width: 90px;
    height: 112px;
    margin: 5px auto;
    border: solid 1px rgb(145, 145, 145);
    position: relative;
    cursor: pointer;
}

.preview a {
    display: flex;
    justify-content: center;
    background-color: #00843e;
    color: white;
    padding: 3px;
}

.preview .remove-image {
    background-color: red;
}
.preview input[type=file] {
    padding: 0;
    margin: 0;
    display: none;
}

.preview img {
    width: 100%;
    vertical-align: bottom;
}

.preview .remove {
    display: none;
    position: absolute;
    color: white;
    background-color: red;
    top: 0px;
    padding: 5px 8px;
    cursor: pointer;
    right: 0px;
}
.preview:hover .remove {
    display: block;
}


/* Style inputs, select elements and textareas */
.add-container input[type=text],
.col-75 input[type=text],
.col-75 .send-number,
.add-container [type=number],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    font-family: 'Poppins', sans-serif;
    color: white;
    background-color: black;
    outline: none;
}


.tox .tox-number-input input {
    background: unset;
    padding: 0;
}

.rating [type=number] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: vertical;
    font-family: 'Poppins', sans-serif;
    color: white;
    background-color: black;
    outline: none;
}

.add-container input[type=text]:focus,
.add-container .col-75 input[type=text]:focus,
.add-container [type=number]:focus,
.add-container select:focus,
.add-container textarea:focus {
    border: 1px solid green;
}

/* Style inputs file btn */
input[type=file] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    background-color: white;
    color: black;
}


/* Style the label to display next to the inputs */


.table_btn_section {
    width: 230px;
}

.id {
    width: 50px;
}

.table_image {
    width: 100px;
}

.active {
    background-color: green;
}

.cancel {
    background-color: #b70202;
}
.done {
    background-color: blue;
}

.select {
    justify-content: center;
}

.select a {
    color: white;
    padding: 5px 10px;
    width: 70px;
    text-align: center;
    margin: 5px 0;
    font-size: .8rem;
    border-radius: 5px;
}



/* Style the submit button */
input[type=submit] {
    padding: 12px 20px;
    border: none;
    width: 100%;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    background: #171717;
    color: white;
}

input[type=submit]:hover {
    background: #000;
}

.btn {
    text-align: center;
    margin: 30px;
}


.act-btn {
    height: 90px;
}

.act-btn .links {
    overflow: hidden;
    justify-content: center;
    display: flex;
    border-radius: 25px;
    font-size: .8rem;
    box-sizing: border-box;
    width: max-content;
    margin-left: auto;
}

.contact {
    display: flex;
    justify-content: end;
    gap: 10px;
    align-items: center;
}



.contact a:first-child {
    display: none;
}


.contact a {
    color: white;
}

.act-btn a {
    color: white;
    padding: 15px;
}




/* Floating column for labels: 25% width */
.col-25 {
    margin-left: 5%;
}

/* Floating column for inputs: 75% width */
.col-75 {
    margin:5px 5%;
    position: relative;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}


/* profile */
.profile {
    margin: auto;
    width: 50%;
    text-align: center;
    background: white;
    border: solid 1px #ddd;
    border-radius: 20px;
}

.profile h1 {
    font-weight: 600;
    font-size: 40px;
    margin: 10px 0;
}

.active-date {
    font-size: 20px;
    color: darkorange;
    margin-bottom: 10px;
}

.profile-contact {
    font-size: 18px;
}

.profile-contact p {
    margin: 5px 0;
}

.profile img {
    width: 50%;
}

.profile a {
    display: block;
}

.admin-edit-btn,
.admin-edit {
    background-color: white;
    width: 60px;
    height: 30px;
    border: solid 1px #ddd;
    border-radius: 5px;
    margin: 20px 0;
}

.admin-edit {
    width: 150px;
}

.profile label {
    float: left;
    width: 30%;
    text-align: start;
    padding-left: 20px;
    line-height: 50px;
}


.profile input[type=password],
.profile input[type=number],
.profile input[type=text] {
    width: 50%;
}


.details {
    line-height: 20px;
    position: relative;
    width: 300px;
}

.details-col span {
    display: block;
}

.details-col {
    position: absolute;
    left: 0;
    top: 10px;
    line-height: 20px;
    text-align: start;
    text-justify: auto;
}

.order-status {
    width: 7%;
}


/* Footer */

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: center;
    height: 50px;
}



footer .container {
    margin-top: 10px;
}

.copyright,
.designed {
    margin-top: 2px;
}


.copyright span,
.designed span {
    font-size: 13px;
}



form {
    margin-top: 10px;
}

.error-msg {
    text-align: center;
    margin: 5px auto;
    color: red;
}

.cate-no {
    width: 3%;
}


.img-table td {
    line-height: 100px;
}


.cate-top th {
    padding: 20px 0;
}



.cat-act {
    background: green;
}

.edit {
    background: #03a5fc;
    color: white;
}

.delete {
    background: red;
    color: white;
}

.cate-box {
    margin: auto;
    font-family: 'Poppins', sans-serif;
    color: black;
}

.cate-box h2 {
    font-size: 40px;
    margin-top: 20px;
}



/* product table */
.banner-name {
    width: 25%;
}


.add-link {
    background: #00158c;
    border-radius: 5px;
    padding: 10px 0px;
    display: inline-block;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    width: 130px;
}

#btns,
#no {
    text-align: center;
}

.no {
    width: 5%;
}

.product-name {
    width: 350px;
}

.pen-status {
    width: 100px;
}


.banner-image {
    position: relative;
    width: 200px;
}

.banner-image img {
    width: 200px;
    display: block;
    position: absolute;
    top: 14px;
}


.product-box h2 {
    font-size: 40px;
    margin-bottom: 20px;
}


.cat-deact {
    background: #fc872d;
}


.user-section {
    margin-top: 20px;
    width: 100%;
    display: flex;
    text-align: center;
    justify-content: space-between;
}


.user-section h3,
.user-section a,
.user-section span {
    font-family: 'Poppins', sans-serif;
    color: white;
}

.user-section a:hover {
    color: darkslategrey;
}

.user-section h3 {
    font-size: 30px;
    padding: 15px 0;
}

.user-section span {
    font-size: 40px;
    font-weight: 700;
}


.user-section div {
    font-size: 30px;
    color: black;
    margin-top: 30px;
}


.user-section section {
    width: 45%;
    border: solid 2px #03a5fc;
    margin: 0 5%;
    height: 200px;

}

.user-option a {
    width: 20%;
    color: white;
    padding: 3px;
}

.user-edit {
    background: green;
}

.user-delete {
    background: red;
}



.image-box {
    position: relative;
    text-align: center;
    width: 110px;
    height: 110px;
    background-color: white;
    overflow: hidden;
}

.upload-status {
    height: 100px;
    color: #949090;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    font-size: .9rem;
}

.image-box i {
    color: #949090;
    font-size: 2rem;
}

.image-box .image {
    height: 110px;
    position: absolute;
    width: 110px;
    border-radius: 5px;
    left: 0;
    top: 0;
}

.image img {
    height: 100%;
    width: 100%;
}


.upload-image #custom-btn {
    width: 110px;
    background-color: #19a4ff;
    color: white;
    padding: 5px;
    margin-top: 5px;
    border: none;
}

.fa-image {
    font-size: .9rem;
}

.image-box .fa-times {
    font-size: 1.3rem;
    top: 3px;
    color: white;
    position: absolute;
    right: 5px;
    display: none;
}
.image-box.active:hover .fa-times {
    display: block;
}
.image-box.active:hover .fa-times:hover {
    color: red;
}

.image-flex {
    justify-content: space-between;
    display: flex;
}


.table {
    width: 100%;
    margin-bottom: 50px;
}

.table tbody td img {
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
}

.table td {
    height: 90px;
}

.table td,
.table th {
    padding: 10px 15px;
    border: 1px solid #a7a7a7;
    text-align: center;
    position: relative;
    max-width: 400px;
    vertical-align: middle;
}
/* 
.table td a {
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
    color: white;
} */

.table .table-img {
    width: 80px;
}

.table th {
    background-color: darkblue;
    color: white;
}


.table tbody tr:nth-child(even) {
    background-color: #181818;
}

.table tbody tr:nth-child(odd) {
    background-color: #181818;
}

.load {
    position: absolute;
    top: 50%;
    right: 5px;
    background-color: #078c0b;
    transform: translate(0, -50%);
    color: white;
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
}

.loaded {
    font-size: .73rem;
    font-weight: bold;
    color: #017504;
}


.table-search {
    display: flex;
    width: 40%;
    float: right;
    height: 40px;
}
.table-search input {
    width: 100%;
    background: #121212;
    height: 100%;
    color: white;
    border: 1px solid #b5b5b5;
    box-shadow: 1px;
    border-radius: 5px;
    padding: 0 20px;
}

.table_pagination {
    height: 30px;
    margin: 20px 0;
    display: flex;
    justify-content: end;
    gap: 10px;
    align-items: center;
    margin-bottom: 50px;
}

.table_pagination a {
    background-color: #414241;
    color: white;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
}

.table {
    margin-bottom: 20px;
}



.table_pagination a.active {
    background-color: rgb(0, 131, 0);
    color: white;
}


/* For Tablets */
@media only screen and (max-width: 900px) {
    .logo {
        display: none;
    }

    nav ul {
        float: none;
        text-align: center;
        margin-right: 5%;
    }
    
    .orders a {
        font-size: 1rem;
    }
    
    .product-box h2 {
    font-size: 25px;
    }
    
    .container {
        width: 95%;
    }
    .grid-manager {
        width: 95%;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .grid-box{
        width: 80%;
    }


}


.header-msg span {
    position: fixed;
    top: 50px;
    background-color: red;
    width: 50%;
    color: white;
    font-size: 1.4rem;
    text-align: center;
    padding: 5px 10px;
    border-radius: 5px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
}
   
.row {
    margin-bottom: 5px;
}

.col-10 {
    display: grid;
    margin: 0 5%;
    margin-bottom: 5px;
    grid-gap: 5px;
    grid-template-columns: 1fr 1fr 1fr;
}
.col-20 {
    display: grid;
    margin: 0 5%;
    margin-bottom: 5px;
    grid-gap: 5px;
    grid-template-columns: 1fr 1fr;
}
.col-20 .col-25,
.col-20 .col-75 {
    margin: unset;
}
.col-10 .col-25,
.col-10 .col-75 {
    margin: unset;
}
.col-10 .col-75 {
    margin: 5px 0;
}
.col-20 .col-75 {
    margin: 5px 0;
}

/* For Mobiles */
@media only screen and (max-width: 800px) {
    .table thead {
        display: none;
    }

    .table, .table tbody, .table tr, .table td {
        display: block;
    }

    .table tr {
        margin-bottom: 15px;
        border: 1px solid black;
        border-bottom: none;
    }

    .table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border: none;
        border-bottom: 1px solid black;
    }
    .table tbody td img {
        position: relative;
        transform: translate(0);
        left: 0;
    }

    .table .table-img {
        width: auto;
    }

    .table td a {
        display: inline-block;
        margin-bottom: 0;
    }
    .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 50%;
        padding-left: 15px;
        text-align: left;
        top: 50%;
        transform: translate(0, -50%);
    }
    .table_btn_section {
        width: unset;
    }
    
    .act-btn {
        justify-content: end;
        gap: 5px;
    }
    
    .side-cont {
        display: none;
    }

    .side-bar-right {
        float: none;
        margin: auto;
        width: 100%;
    }
    .act-btn {
        justify-content: end;
        gap: 5px;
    }

    .table td {
        height: auto;
    }

    .act-btn a {
        padding: 15px 20px;
    }

    .contact a:first-child {
        color: #01e901;
        background: green;
        width: 25px;
        aspect-ratio: 1;
        display: grid;
        place-items: center;
        border-radius: 50%;
        padding: 5px;
    }

    /* nav bar*/


    .logo {
        display: block;
        font-size: 20px;
        line-height: 42px;
        margin-left: 20px;
    }

    .logo a {
        padding: 0 5px;
        border: solid 2px white;
    }

    .logo span {
        font-size: 12px;
    }

    nav ul {
        float: none;
        position: absolute;
        width: 100%;
        margin-top: 50px;
        display: none;
        height: calc(100vh - 50px);
    }


    .nav-link.active {
        display: block;
        z-index: 10;
        background: black;
    }

    nav ul li {
        text-align: center;
        background-color: white;
        display: block;
    }

    nav ul li a {
        display: block;
        font-size: 14px;
        padding: 0;
    }

    nav ul .shop-btn {
        background: #343333;
    }


    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropbtn {
        background: white;
        color: white;
        border: none;
        width: 100%;
    }

    .dropdown,
    .dropbtn a {
        display: block;
        width: 100%;
    }


    .dropdown-content a {
        font-size: 13px;
    }
    
    
    .grid-box a .fas {
        font-size: 35px;
        margin-top: 15px;
    }





    /* toggle button */




    .toggle-button {
        display: flex;
    }

    .logout-btn {
        display: block;
    }



    /* login form */
    .admin-form,
    .login-form {
        width: 95%;
    }


    .user-visits h5,
    .user-visits h6 {
        font-size: 20px;
    }

    
    .orders a {
        font-size: 1rem;
    }
    
    .product-box h2 {
    font-size: 25px;
    }
    
    .container {
        width: 95%;
        min-width: 380px;
    }
    .grid-manager {
        width: 95%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-bottom: 50px;
    }
    
    .grid-box{
        width: 80%;
        display: grid;
        place-content: center;
    }
    
    .add-container {
        width: 95%;
    }
    
    
    .single-image {
        grid-template-columns: unset;
    }
    .image-row {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .profile {
        width: 90%;
    }

}


/* UPDATES */
.popup {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.404);
    position: fixed;
    z-index: 1;
    left: 50%;
    display: none;
    place-items: center;
    overflow: hidden;
    top: 50%;
    transform: translate(-50%, -50%);
}

.popup_box {
    position: relative;
    width: 380px;
    background-color: #0c0c0c;
    border-radius: 5px;
    box-shadow: 0 4px 8px 0 rgb(0 0 0), 0 6px 20px 0 rgb(0 0 0);
}
.popup_box .btn {
    margin: 15px 5%;
}
.popup_box .image-row {
    grid-template-columns: unset;
}
.popup_box h1 {
    margin-left: 5%;
    padding-left: 5px;
    color: #002d4c;
    font-size: 1.2rem;
    border-left: 2px solid #0f83d5;
}
.popup_box a {
    color: white;
}
.exit {
    position: absolute;
    right: 5px;
    top: 5px;
}
.exit i {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    color: white;
    border-radius: 2px;
    background-color: red;
    cursor: pointer;
}

.order_number {
    color: black;
    background: white;
    padding: 10px 15px;
    border-radius: 5px;
}

.order_product {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.order_product img {
    width: 80px;
}

.order_section {
    padding: 20px;
}
.order_section h2 {
    font-size: 1.2rem;
    padding-bottom: 0.8em;
}
.detail_box {
    display: flex;
    flex-direction: column;
}
.order_addr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: solid 1px #a19797;
}

.addr_detail {
    text-align: end;
}
.addr_detail div {
    text-align: end;
    padding: 5px 0;
}


.table td .url {
    color: white;
    padding: 0;
}