body {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body, a {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: black;
    text-decoration: none;
}
h1, h2, a, p {
    padding: 0;
    margin: 0;
}

.navbar {
    background: #272A22;
    background: linear-gradient(345deg, rgba(39, 42, 34, 1) 0%, rgba(99, 109, 82, 1) 100%);
    width: 100%;

    margin-bottom: 2rem;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
}
.navbar-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
}
.navbar-filler {
    min-width: 100px;
    background-color: rgb(67, 74, 56);
    border-top: 1px solid rgb(99, 109, 82);
    border-bottom: 1px solid rgb(99, 109, 82);
}

.nav-button {
	display: inline-block;
	text-align: center;
	background-color: rgb(67, 74, 56);
	font-size: 17px;
    font-weight: 600;
	min-width: 70px;
	padding: 12px 15px;

	transition: all .4s;
	cursor: pointer;
    color: white;
}
.nav-button:hover {
    background-color: rgb(99, 109, 82);
    
}
.button-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;

    background-color: rgb(67, 74, 56);
    border-top: 1px solid rgb(99, 109, 82);
    border-bottom: 1px solid rgb(99, 109, 82);
}

.button, label[for="plik"] {
	display: inline-block;
	text-align: center;
	background-color: #EFEFEF;
	font-size: 15px;
	font-weight: 600;
	min-width: 100px;
	padding: 10px 10px;
    margin: 10px 0px 0 0;
	border: 2px solid #DDD;
	border-radius: 8px;
	transition: all .25s ease-out;
	cursor: pointer;
}
label[for="plik"]:hover,
.button:hover {
	background-color: #CCC;
	border-color: #BBB;
	box-shadow: 0px 0px 20px -8px rgba(70, 70, 70, 0.8);
	-webkit-box-shadow: 0px 0px 20px -8px rgba(70, 70, 70, 0.8);
	-moz-box-shadow: 0px 0px 20px -8px rgba(70, 70, 70, 0.8);
}

.button:disabled {
	font-size: 15px;
	color: #AAA;
	background-color: #F5F5F5;
	border: 2px solid #EEE;
	border-radius: 8px;
	cursor: default;
}
.button:disabled:hover {
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
}

.send-button {
    font-family: "Inter", sans-serif;
    font-weight: 800;
    font-style: normal;
}
.send-button:hover {
    transform: scale(1.1);
}
.send-button:active {
    transition: all 0.08s ease-out;
    transform: scale(0.9);
}
.send-button > .icon-paper-plane {
    margin-right: 6px;
    margin-left: -30px;
    opacity: 0.0;
    transition: all 0.2s ease-out;
}
.send-button:hover > .icon-paper-plane {
    margin-right: 0px;
    margin-left: 0px;
    opacity: 1.0;
}
.send-button:disabled:hover {
    transform: none;
}
.send-button:disabled:hover > .icon-paper-plane {
    transform: none;
    margin-right: 6px;
    margin-left: -30px;
    opacity: 0;
}
.send-button:disabled:active {
    transition: all 0.08s ease-out;
    transform: none;
}

input[type="file"] {
    display: none;
}
label[for="plik"] {
    font-size: xx-large;
    cursor:pointer;
    min-width: none;
    padding: 2rem 1rem;
    margin: 0;
}

.bg-panel {
    border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
    box-shadow: 0 0 30px 1px rgba(100, 100, 100, 0.5);
	-webkit-box-shadow: 0 0 30px 1px rgba(100, 100, 100, 0.5);
	-moz-box-shadow: 0 0 30px 1px rgba(100, 100, 100, 0.5);
}

.download-list {

}

.file-section {
    width: 90%;
    max-width: 40rem;
}
.file-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#file-upload-panel {
    position: relative;
}
#upload-overlay {
    box-sizing: border-box;
    position: absolute; /* or absolute */
    left: 0;
    top: 0;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    opacity: 0.0;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    z-index: 9999; /* 👈 makes it appear above all other elements */
    pointer-events: none; /* optional: allow clicking through */
    transition: all 0.2s ease-in-out;
    border: dashed 3px;
}

.dropdown-content {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    background-color: rgb(67, 74, 56);
    min-width: 160px;
    z-index: 1;
    transition: all 0.25s ease-in; 
}
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    transition: all 0.25s ease-in; 
    display: block;
}
.dropdown-content a:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.dropdown-content a:hover {
  cursor: pointer;
  background-color: rgb(99, 109, 82);
  color: white;
}
.nav-button > .icon-link-ext,
.dropdown-content > a > .icon-link-ext {
    float:right;
    display: block;
    transition: all 0.25s ease-out; 
    opacity: 0;
    margin-right: -10px;
}
.nav-button:hover > .icon-link-ext,
.dropdown-content a:hover > .icon-link-ext {
    opacity: 1;
}

.dropdown:hover .dropdown-content {
    pointer-events:all;
    opacity: 1;
}

.dropdown:hover .nav-button {
  background-color: rgb(99, 109, 82);
}