/* CSS */

/* Body */
body { 
    background: linear-gradient(135deg, #E3F2FD 0%, #FFFFFF 100%);
    margin: 0; 
    height: 100vh; 
}

/* Header */
header {
    width: 200px;
    height: 100px;
    background: #ffffff;
    margin :auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;    
    border-bottom-left-radius: 50px; 
    border-bottom-right-radius: 50px; 
}
header img {
    margin: auto;
    max-width: 100%;
    height: auto;
    transition: all ease-in 0.3s;
}
header img:hover {
    opacity: 0.7;
}

/* Top Section */
section {
    width: 45%;
    margin: 30px auto 30px auto;
    padding:15px;
    box-sizing: border-box;
}
section h1 {
    font-size: 36px;
    font-family: Arial, sans-serif;
    text-align: center;
    line-height: 1.2em;
    color: #101828;    
}
section p {
    font-size: 20px;
    font-family: Arial, sans-serif;
    color: #6C7686;
    line-height: 1.5em;   
    text-align: center;
}

/* Main Section */
section#main  {
    width: 45%;
    margin: 0px auto 30px auto;
    padding:15px;
    box-sizing: border-box;
}
section#main h2 {
    font-size: 24px;
    font-family: Arial, sans-serif;
    text-align: left;
    line-height: 1.2em;
    color: #333333; 
    margin-top: 0px;
}
section#main p {
    font-size: 17px;
    font-family: Arial, sans-serif;
    color: #555555;
    line-height: 1.5em;   
    text-align: left;
}
section#main a {
    color: #555555;
}

/* Deleted Section */
section#deleted {
    width: 45%;
    margin: 30px auto 30px auto;
    padding:15px;
    box-sizing: border-box;
}
section#deleted h1 {
    font-size: 60px;
    font-family: Arial, sans-serif;
    text-align: center;
    line-height: 1.2em;
    color: #101828;    
}
section#deleted p {
    font-size: 20px;
    font-family: Arial, sans-serif;
    color: #6C7686;
    line-height: 1.5em;   
    text-align: center;
}

/* Upload Container */
.container { 
    width: 30%; 
    margin: 30px auto 80px auto; 
}
.dropzone { 
    border: 2px dashed #84CAFF; 
    border-radius: 10px;
    padding: 30px; 
    text-align: center; 
    cursor: pointer; 
    transition: all 0.2s ease-in-out; 
    position: relative; 
    margin-bottom: 15px; 
    background-color: #ffffff;
}
.dropzone:hover { 
    border-color: #3b82f6; 
    background-color: #eff6ff; 
}
.dropzone-text { 
    color: #101828; 
    font-weight: 600; 
    font-size: 18px; 
    font-family: Arial, sans-serif;
    line-height: 1.5em;
}
.dropzone-subtext { 
    color: #999999; 
    font-size: 13px; 
    font-family: Arial, sans-serif; 
    line-height: 1.5em;
}
.dropzone input[type="file"] {
    opacity: 0; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    cursor: pointer; 
}
.btn {
    width: 100%;
    background-color: rgb(21, 112, 239);
    color: #ffffff;
    font-weight: 700;
    padding: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s;
    font-family: Arial, sans-serif;
    font-size: 18px;
    transition: all ease-in 0.3s;
}
.btn:hover {
    opacity: 0.8;
}
.btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.5);
}
.btn:disabled {
    background-color: #9ca3af;
    cursor: not-allowed;
}
#server-message {
    margin-top: 10px;
}
.progress-container {
    margin-top: 1.5rem; 
}
.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center; 
    margin-bottom: 15px; 
}
.progress-text { 
    font-size: 17px; 
    font-weight: 500; 
    padding: 5px 15px; 
    border-radius: 10px; 
    color: #ffffff; 
    background-color: #101828; 
    font-family: Arial, sans-serif; 
}
.progress-percent { 
    font-size: 20px; 
    font-weight: 600; 
    color: #101828; 
    font-family: Arial, sans-serif; 
}
.progress-bar-wrapper {
    background-color: #97D7FF;
    border-radius: 10px; 
    height: 8px; 
    display: none; /* NOT SHOWING THE PROGRESS BAR WRAPPER */
}
.progress-bar { 
    width: 0; 
    height: 100%; 
    background-color: #4F46E5; 
    border-radius: 10px; 
    transition: width 0.3s ease-in-out; 
}
.hidden { 
    display: none; 
}
.message { 
    padding: 15px; 
    border-radius: 8px; 
    margin-bottom: 15px; 
}
.success { 
    background-color: #e6f4ea; 
    color: #1e8736; 
    border: 1px solid #c8e6c9;
    font-size: 17px; 
    line-height: 1.5em; 
    font-family: Arial, sans-serif; 
    text-align: center;    
}
.error { 
    background-color: #fce8e8; 
    color: #d93025; 
    border: 1px solid #f2c7c7; 
    font-size: 17px; 
    line-height: 1.5em;
    font-family: Arial, sans-serif;  
    text-align: center;
}
.file-list { 
    font-family: Arial, sans-serif; 
    font-size: 17px; 
    color: #000000; 
    background-color: #eeeeee; 
    padding: 5px; 
    text-align: center;
}
#downloadLinkContainer {
    margin-top: 10px!important;
    width: 100%!important;
}
#downloadLinkInput {
    width: 100%!important;
    padding: 15px!important;
    border-radius: 10px!important;
    font-family: Arial, sans-serif!important;
    font-size: 15px!important;
    box-sizing: border-box!important;
    border: none!important;
    margin: 10px 0px 0px 0px!important; 
    text-align: center!important;
}
.link-buttons { 
    display: flex; 
    justify-content: center; 
    margin-top: 10px; 
}
.copy-btn {
    display: inline-block; 
    padding: 8px 12px; 
    font-size: 15px; 
    font-weight: bold; 
    color: #fff; 
    border: none; 
    border-radius: 6px; 
    cursor: pointer; 
    text-decoration: none; 
    background-color: #0099ff;    
    transition: all ease-in 0.3s; 
    font-family: Arial, sans-serif!important;
    margin-right: 8px;
}
.copy-btn:hover { 
    opacity: 0.8
}
.delete-btn { 
    display: inline-block; 
    padding: 8px 12px; 
    font-size: 15px; 
    font-weight: bold; 
    color: #fff; 
    border: none; 
    border-radius: 6px; 
    cursor: pointer; 
    text-decoration: none; 
    transition: background-color 0.2s; 
    background-color: #e53e3e;    
    transition: all ease-in 0.3s; 
    font-family: Arial, sans-serif!important;    
}
.delete-btn:hover { 
    opacity: 0.8
}
#qrCodeContainer {
    margin: 15px auto 0px auto;
    display: block;
    width: 128px;
    height: 128px;
}
#qrCodeContainer canvas, #qrCodeContainer img {
    display: block;
    background: #ffffff;  
}

/* Footer */
footer {
    width: 40%;
    padding: 10px;
    box-sizing: border-box;
    margin: 30px auto 0px auto;
    text-align: center;
    border-top: solid 1px #cccccc;    
}
footer div a {
    font-size: 14px;
    font-family: Arial, sans-serif!important;
    text-decoration: none;
    transition: all ease-in 0.3s;
    margin: 10px;
    color: #6C7686;
    line-height: 1.5em;
}
footer div a:hover {
    opacity: 0.7;
}
footer p {
    font-size: 13px;
    font-family: Arial, sans-serif!important;
    color: #777777;
    line-height: 1.5em;
}
footer p a {
    font-size: 13px;
    font-family: Arial, sans-serif!important;
    text-decoration: none;
    color: #777777;
}

/* Responsive */
@media all and (min-width:360px) and (max-width:800px) {

/* Top Section */
section {
    width: 100%;
}
section h1 {
    font-size: 32px; 
}
section p {
    font-size: 17px;
}

/* Main Content */
section#main  {
    width: 100%;
}
/* Deleted Section */
section#deleted {
    width: 100%;
}
section#deleted h1 {
    font-size: 40px;
}
section#deleted p {
    font-size: 17px;
}

/* Upload Container */
.container { 
    width: 95%; 
}

/* Footer */
footer {
    width: 95%; 
}
footer div a {
    font-size: 13px;
    margin: 7px;
}
}



