@font-face {
    font-family: 'LemonMilk';
    src: url('../fonts/LEMONMILK-Regular.ttf') format('truetype');
}
@font-face {
    font-family: 'LemonMilk-Light';
    src: url('../fonts/LEMONMILK-Light.ttf') format('truetype');
}
@font-face {
    font-family: 'Coolvetica';
    src: url('../fonts/coolvetica-rg.otf') format('opentype');
}

@font-face {
    font-family: 'SFPro-Bold';
    src: url('../fonts/SFPRODISPLAYBOLD.OTF') format('opentype');
}

@font-face {
    font-family: 'SFPro-Regular';
    src: url('../fonts/SFPRODISPLAYREGULAR.OTF') format('opentype');
}

@font-face {
    font-family: 'SFPro-Medium';
    src: url('../fonts/SFPRODISPLAYMEDIUM.OTF') format('opentype');
}

body {
    margin: 0;
    font-family: 'SFPro-Regular';
    scroll-behavior: smooth;
    background-color: black;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

form {
    display: inline-block;
    margin: 0;
}

.btn {
    font-family: 'SFPro-Medium';
    font-size: 12px;
    padding: 8px 18px;
    background-color: white;
    border-radius: 10px;
    border: none;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.137);
    transition: all 0.2s ease;
}

.btn-red {
    background-color: red;
    color: white;
}

.btn-red:disabled {
    background-color: rgb(255, 154, 154);
    color: white;
}

.btn:hover {
    cursor: pointer;
    transform: translateY(-3px);
    box-shadow: 1px 4px 2px rgba(0, 0, 0, 0.137);
}

.btn:disabled {
    cursor: not-allowed;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-row {
    display: flex; 
    justify-content: space-between; 
    flex-wrap: wrap;
}

.section {
    flex: 1;
    margin-right: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
    margin-bottom: 30px;
    max-width: 1200px;
    font-size: 14px;
}

.section form {
    width: 100%;
}

.section table {
    border-collapse: separate;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 1200px; 
    margin-bottom: 30px;
    text-align: center;
    border-spacing: 0 10px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    overflow: auto;
}

.modal form {
    width: 100%;
}

.modal-table {
    width: 100%;
}

.modal-table input {
    width: 100%;
    padding: 8px 0px;
    border: 1px solid #e3e3e3;
    border-radius: 6px;
    text-indent: 10px;
    font-family: 'SFPro-Medium', Arial;
    font-size: 16px;
}

.modal-table input:focus {
    border-color: #000000;
}

.modal-table input:hover {
    border-color: #000000;
}

.modal-table input::placeholder {
    font-family: inherit;
    color: rgb(197, 197, 197);
    font-size: 14px;
    opacity: 1;
}

.modal-table input:focus::placeholder {
    color: lightgray;
}
  
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
}

.large {
    max-width: 900px;
}

.modal-form {
    text-align: left;
    padding: 10px;
}
  
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-content input[type="password"],
.modal-content input[type="submit"] {
    font-family: 'DM Sans', sans-serif;
    font-size: smaller;
    display: inline-block;
}

/* Dropdown Start */

.drpdwn {
    background: #ffffff url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"%3E%3Cpolygon points="0,0 10,0 5,6" fill="%23000"/%3E%3C/svg%3E') no-repeat right 10px center;
    border: solid #e3e3e3 1px;
    border-radius: 6px;
    padding: 8px 8px;
    font-size: 14px;
    color: black;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    outline: none;
    background-size: 10px 6px;
    width: 100%;
}

.drpdwn:focus {
    border-color: #000000;
}

.drpdwn:hover {
    border-color: #000000;
}

.drpdwn:disabled {
    background: #f5f5f5;
    color: #a0a0a0;
    cursor: not-allowed;
}

/* Dropdown End */

textarea {
    width: 100%;
    border-radius: 8px;
    border: solid #e3e3e3 1px;
    padding: 8px 0px;
    font-size: 14px;
    resize: vertical;
}

textarea:focus {
    border-color: #000000;
}

textarea:hover {
    border-color: #000000;
}

/* Job Status */

.status-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.status-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background-color: #fff;
    transition: background-color 0.3s, border-color 0.3s;
}

.status-line {
    width: 30px;
    height: 3px;
    background-color: #ccc;
    transition: background-color 0.3s;
    margin-bottom: 15px;
}

.active {
    background-color: rgb(2, 198, 2);
    border-color: rgb(2, 198, 2);
}

.active-line {
    background-color: rgb(2, 198, 2);
}

/* Job Status End */

/* Notification */

#notification-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.notification {
    background-color: rgb(0, 170, 0);
    color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    width: 250px;
    max-width: 90%;
    opacity: 1;
    animation: fadeOut 4s ease-out forwards;
    font-family: 'SFPro-Medium'; 
    text-align: center;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Notification End */

.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    max-width: 100px;
    max-height: 100px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.image-container img:hover {
    transform: translateY(-5px);
    cursor: pointer;
}

.delete-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.617);
    color: white;
    border: none;
    font-size: 16px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.image-container:hover .delete-btn {
    opacity: 1;
}

.delete-btn:hover {
    background-color: rgba(255, 0, 0, 1);
    cursor: pointer;
}
