/*-- Imports --*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/*--Colors--*/
:root {
    --color-bg: rgb(25, 49, 82);
    --color-bg-surface: rgb(48, 64, 93);
    --color-bg-surface-2: rgb(60, 79, 119);
    --color-bg-surface-3: rgb(55, 73, 108);
    --color-text-primary: white;
    --color-text-hover: rgb(192, 192, 192);
    --color-text-deactivated: rgb(157, 157, 157);
    --color-border: rgb(255, 255, 255);
    --color-button: rgb(251, 58, 58);
    --color-button-hover: rgb(216, 42, 42);
}


/*--General--*/

html, body {
    background-color: var(--color-bg);
}

body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/*--Fonts--*/

h1 {
    color: var(--color-text-primary);
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    text-align: center;
}

h2 {
    color: var(--color-text-primary);
    font-family: "Poppins", sans-serif;
    font-size: 3rem;
}

a, p {
    font-family: "Poppins", sans-serif;
    font-size: 2.0rem;
    color: var(--color-text-primary);
    text-decoration: none;
    margin: 0 10px 0 10px;
    cursor: pointer;
    transition: 0.5s;
}

a:hover {
    color: var(--color-text-hover);
}

/*--Sections--*/

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#logo {
    width: 200px;
    height: auto;
    margin: 20px 0 0 20px;
}

main {
    display: flex;
    /*min-height: 100vh;*/
    flex-direction: row;
    justify-content: space-evenly;
    /*margin-top: 5%;*/
}

.main-dashboard {
    margin-top: 2%;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin-bottom: 150px;
    z-index: 5;
}

.returnButton {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
}

.returnButton a {
    justify-content: center;
    margin-right: 10px;
    margin-top: 1.5%;
    vertical-align: middle;
}

/*--Inputs--*/
input {
    /*width: 40px;*/
    width: auto;
    /*max-width: 50%;*/
    background-color: transparent;
    color: white;
    box-sizing: border-box;
    padding: 0;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    text-align: left;
    border-bottom: 1px dashed white;
}

input::placeholder {
    color: white;
    opacity: 0.5; /* Placeholder text will be half transparent */
}

input[name="search"]:focus {
    outline: none;
    box-shadow: none;
}

/* Container for the input and label */
.input-container {
    display: flex;
    flex-direction: row;
    position: relative;
    margin-top: 20px;
    width: 100%;
}

.search-container form {
    display: flex;
    flex-direction: row;
    width: 40%;
}

.search-container button {
    margin: 8px 0;
}

.keycode-hint{
    display: grid;
    justify-content: center;
    margin: 0 0 0 10px;
    min-width: 1.25rem;
    align-content: center;
    border-radius: 4px;

    border: 1px solid var(--color-text-hover);
    color: inherit;
    box-shadow: none;
    background-color: transparent;

    width: fit-content;
    height: 1.25rem;
    padding: .15rem .25rem;
    font-family: Inter,sans-serif;
    font-size: .800rem;
    /*font-style: normal;*/
    /*font-weight: 400;*/
    line-height: 90%;
}

.custom-modal button{
    display: flex;
    align-items: center;
}


/* Style for the input field */
.input-container input[name="search"] {
    width: 100%;
    padding: 10px 0;
    background-color: transparent;
    color: white;
    border: none;
    border-bottom: 1px dashed white;
    font-family: "Poppins", sans-serif;
    font-size: 1.3rem;
    outline: none;
    box-shadow: none;
}

/* Style for the label */
.input-container label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 15px;
    left: 0;
    color: white;
    font-size: 1.3rem;
    font-family: "Poppins", sans-serif;
    pointer-events: none;
    transition: 0.2s ease all;
    opacity: 0.5;
}

/* Move the label up and make it smaller when the input is focused */
.input-container input[name="search"]:focus + label,
.input-container input[name="search"]:not(:placeholder-shown) + label {
    top: -20px;
    font-size: 1rem;
    opacity: 1;
}

textarea {
    width: 98%;
    height: 100px;
    background-color: transparent;
    color: white;
    border: 1px solid rgb(255, 255, 255);
    font-family: "Poppins", sans-serif;
    padding: 10px;
    resize: vertical;
}


/*--Table--*/

table,
#roundEurosText {
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: var(--color-text-primary);
    width: 100%;
    border-collapse: collapse;
    margin-top: 80px;
    table-layout: fixed;
}

.textBelowTable{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#exportText{
    text-align: right;
    margin-top: 25px;
    margin-right: 30px;
}

#exportText:hover{
    text-decoration: underline;
}

#exportTextModal:hover{
    text-decoration: underline;
}

.textBelowTable p{
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    color: var(--color-text-primary);
    width: 100%;
    border-collapse: collapse;
    margin-top: 80px;
    table-layout: fixed;
}


table, th, td {
    border: none;
    border-bottom: 1px solid var(--color-border);
}

th, td {
    padding: 15px;
    text-align: left;
    width: 28%;
}

th {
    color: var(--color-button);
    text-align: left;
}

#usersTableHeader {
    text-align: left;
}

td {
    text-align: left;
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

}

td p,
td a {
    /*width: 120px;*/
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 19px;
}

thead {
    background-color: transparent;
}

#r_period,
#r_period input,
#r_period h3 {
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#companyName {
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 180px;
}

#companyHeader {
    text-align: center;
    width: 180px;
}

#r_periodnoflow {
    text-align: left;
    width: 350px;
}

td input {
    /*width: 40px;*/
    width: 100%;
    background-color: transparent;
    color: var(--color-text-primary);
    box-sizing: border-box;
    padding: 0;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    text-align: left;
    border-bottom: 1px dashed var(--color-border);
}

td select,
select {
    width: 100%;
    max-height: 40px;
    max-width: 500px;
    background-color: transparent;
    /*color: var(--color-text-primary);*/
    opacity: 1;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: none;
    font-family: "Poppins", sans-serif;
    font-size: 1.1rem;
    /*text-align-last: center; !* Center the selected option *!*/
    -webkit-appearance: none; /* Remove default select dropdown styling for Chrome */
    -moz-appearance: none; /* Remove default select dropdown styling for Firefox */
    appearance: none; /* Remove default select dropdown styling for other browsers */
}

table a {
    font-size: 1.1rem;
    text-align: left;
    margin: 0;
}

select {
    margin: 60px auto 0 auto;
    border: 2px solid rgb(255, 255, 255, 0.3);
    vertical-align: middle;
}

td input::placeholder {
    color: var(--color-text-primary);
    opacity: 0.5; /* Placeholder text will be half transparent */
}

.edit-select {
    color: var(--color-text-primary);
    opacity: 1;
}

#u_editInvestID {
    width: 9%;
}

#u_editRole {
    width: 9%;
}

#u_editNames {
    width: 15%;
}

.td-empty {
    color: #5a5a5a;
    text-align: center;
}


/*--Objects--*/

#wing {
    width: 45%;
    height: auto;
}

.ls-box {
    display: flex;
    justify-content: center;
    /*align-items: center;*/
    flex-direction: column;
    max-width: 450px;
    min-width: 350px;
}

.ls-header {
    display: flex;
    /*justify-content: space-around;*/
    flex-direction: row;
    margin-bottom: 50px;
}

.ls-header h2 {
    margin-left: auto;
    margin-right: auto;
}

.ls-inactive a {
    color: var(--color-text-deactivated);
}

.ls-inactive a:hover {
    color: var(--color-button-hover);
}

.ls-active {
    border-bottom: 1px solid var(--color-button);
    padding-bottom: 7px;
}

.ls-active a {
    color: var(--color-button);
    padding: 0 10px;
}

.ls-form {
    display: flex;
    flex-direction: column;
}

.ls-form div {
    margin: 10px 0;
    margin-bottom: 40px;
}

.ls-form input {
    font-family: "Poppins", sans-serif;
    width: 80%;
    height: 30px;
    border: none;
    padding: 5px;
    color: var(--color-text-primary);
    background-color: transparent;
    border-bottom: 2px solid var(--color-text-deactivated);
    font-size: 1.3rem;
    text-align: left;
    transition: 0.2s;

    box-sizing: inherit;
}

.ls-form input:focus {
    outline: none;
    border-bottom: 2px solid var(--color-border);
}

.ls-form i {
    color: var(--color-text-primary);
    font-size: 2rem;
    margin: auto 10px auto 0;
    vertical-align: middle;
}

.ls-buttons {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin-top: 60px;
    padding: 0 20px;
}

button {
    font-family: "Poppins", sans-serif;
    border-radius: 20px;
    background-color: var(--color-button);
    border: none;
    color: var(--color-text-primary);
    font-size: 1.3rem;
    cursor: pointer;
    transition: 0.5s;
}

.ls-buttons button {
    width: 45%;
    height: 40px;
}


button:hover {
    background-color: var(--color-button-hover);
    /*color: rgb(187, 187, 187);*/
}

#ls-fyp {
    background-color: transparent;
    font-size: 0.8rem;
    color: var(--color-text-deactivated);
    vertical-align: middle;
    margin: auto 0;
}

#ls-fyp:hover {
    color: rgb(255, 255, 255);
}

#signup-button {
    justify-content: flex-end;
}

.errorbar h3 {
    font-family: "Poppins", sans-serif;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    color: #d0d0d0;
    background-color: darkred;
    font-size: 1.3rem;
    margin: 0 auto;
    margin-bottom: 20px;
    width: fit-content;
    padding: 10px 20px;
}

.errorbarTable h3 {
    font-family: "Poppins", sans-serif;
    display: flex;
    border-radius: 20px;
    flex-direction: row;
    justify-content: center;
    color: #d0d0d0;
    background-color: darkred;
    font-size: 1.3rem;
    margin: 0 auto;
    margin-top: 60px;
    width: fit-content;
    padding: 10px 20px;
}

.successMessage h3 {
    font-family: "Poppins", sans-serif;
    display: flex;
    border-radius: 20px;
    flex-direction: row;
    justify-content: center;
    color: #ffffff;
    background-color: darkgreen;
    font-size: 1.3rem;
    margin: 0 auto;
    margin-top: 60px;
    width: fit-content;
    padding: 10px 20px;
}

.logout-form {
    margin: auto 15px;
    padding: 2px 5px;
}

#logout-button {
    width: 100%;
    border-radius: 15px;
    padding: 3px 15px;
}

#wing-dashboard {
    width: 45%;
    position: fixed;
    z-index: 0;
    left: 25%;
    margin: 90px auto 0 auto;
}

#welcome-message {
    text-align: center;
    margin-top: 1%;
}

.edit-button {
    padding-top: 16px;
    width: 57px;
}

.edit-button a {
    font-size: 1.3rem;
}

.edit-button i {
    transition: 0.4s;
}

.edit-button i:hover,
.reporting-button i:hover {
    color: #9d9d9d;
}

.admin-apps {
    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: transparent;
    margin-top: 40px;
}

.admin-app {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /*background-color: rgb(217,185,109);*/
    /*width: 320px;*/
    width: 20vw;
    /*height: 30vh;*/
    font-family: "Poppins", sans-serif;
    font-size: 2.0rem;
    color: var(--color-text-primary);
    margin: 25px;
    padding: 50px;
    -webkit-backdrop-filter: blur(35px);
    backdrop-filter: blur(35px);
    /*box-shadow: inset 0 0 0 2000px rgba(225, 225, 225, 0.3);*/
    border: 1px solid rgba(225, 225, 225, 0.09);
    border-radius: 40px;
    transition: 0.5s;
    cursor: pointer;
}

.admin-app:hover {
    /*box-shadow: inset 0 0 0 2000px rgb(217, 217, 217, 0.3);*/
    box-shadow: inset 0 0 200px 20px rgb(217, 217, 217, 0.3);
}

.admin-app i {
    margin: auto;
    margin-bottom: 40px;
    font-size: 4.0rem;
}

.admin-app h3 {
    margin: auto;
    text-align: center;
}

#loadMoreButton {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: transparent;
    color: var(--color-button);
    font-size: 1.3rem;
    cursor: pointer;
    transition: 0.5s;
}

#loadMoreButton:hover {
    color: var(--color-button-hover);
}

.s-form, .s-form h3, .s-form a {
    color: var(--color-text-primary);
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    text-align: center;
    margin: 0 auto;
    width: 100%;
    line-height: 45px;
}

#companySelect {
    color: var(--color-text-primary);
    background-color: rgb(30, 37, 65);
    width: 30%;
    padding: 10px;
    border: 1px solid rgba(204, 204, 204, 0.5);
    border-radius: 4px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    margin: 20px auto 0 auto;
}

footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 20px;
    z-index: 5;
}

footer a {
    font-size: 1.4rem;
}

.index-footer {
    /*margin-top: 25vh;*/
}

#resetPwdButton {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.logoDisplayer {
    width: min-content;
    height: auto;
    padding: 20px;
    background-color: var(--color-text-primary);
    border-radius: 45px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#roundEurosText {
    font-size: 1.1rem;
    margin-top: 25px;
}


/*SelectorLeftMenu*/

.selector-menu {
    display: flex;
    position: absolute;
    flex-direction: column;
    justify-content: left;
    margin-top: 190px;
    padding-left: 15px;
    z-index: 10;
    background-color: var(--color-bg-surface);
    border-top-right-radius: 10px; /* Adjust the value as needed */
    border-bottom-right-radius: 10px; /* Adjust the value as needed */
}

.selector-menu-option {
    display: flex;
    flex-direction: row;
    justify-content: left;
    color: var(--color-text-primary);
    padding: 15px 10px;
    /*cursor: pointer;*/
}

.selector-menu-option:hover {
    color: var(--color-text-hover);
}

.selector-menu h3 {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-family: "Poppins", sans-serif;
    font-size: 2.0rem;
    text-decoration: none;
    margin-left: 10px; /* Adjust margin as needed */
    cursor: pointer;
    line-height: 125%;
    transition: max-width 0.5s ease-in-out, color 0.5s ease-in-out;
    /*transition: 0.5s;*/
}

.selector-menu-option:hover h3 {
    max-width: 400px;
}

.selector-menu:hover h3 {
    max-width: 400px;
}

.selector-menu i {
    font-family: "Poppins", sans-serif;
    border-radius: 20px;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    vertical-align: middle;
    margin-top: auto;
    margin-bottom: auto;
    transition: 0.5s;
}

#selector-opportunity {
    padding-bottom: 30px;
}

#selector-flag {
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
}

.active i, .active h3 {
    color: var(--color-button)
}

.active:hover i, .active:hover h3 {
    color: var(--color-button-hover);
}


/* Modal */
/* Basic modal background overlay */
.modal {
    position: fixed;
    z-index: 1000; /* Ensure it sits above other elements */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    display: none; /* Default hidden */
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevent background from scrolling */
    transition: 0.5s;
}

/* Modal content styling */
.modal-content {
    background-color: var(--color-bg-surface);
    padding: 20px;
    border-radius: 8px;
    width: 70%; /* Adjust width as needed */
    /*max-width: 500px;*/
    text-align: center;
    position: relative;
    margin: 8% auto;
    max-height: 75vh; /* Adjust the height as needed */
    overflow-y: auto; /* Enable vertical scrolling */
    transition: 0.5s;
}

.modal-content h2 {
    margin: 0 20px;
}

.modal-content p,
.modal-content a {
    font-size: 1.5rem;
    cursor: auto;
    text-align: left;
    line-height: 33px;
}

.modal-content a {
    margin: 0;
}

.modal-field {
    display: flex;
    /*justify-content: space-between;*/
    justify-content: flex-start;
    margin-bottom: 10px;
}

.modal-label {
    flex: 1;
    max-width: 50px;
}

.modal-value {
    flex: 2;
    text-align: left;
}

.modal-title-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 35px;
    vertical-align: middle;
}

.modal-title-container i {
    vertical-align: middle;
    margin: auto 0;
    font-size: 2.0rem;
    color: var(--color-button);
    cursor: pointer;
    transition: 0.5s;
}

.modal-title-container i:hover {
    color: var(--color-button-hover);
}

.modal-title-inner-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    vertical-align: middle;
}

.modal-title {
    max-width: 845px;

}

.modal-input {
    flex: 2;
    text-align: left;
    font-size: 1.5rem;
    padding-bottom: 5px;
    margin: 0;
}

.modal-buttons {
    margin-top: 20px;
    text-align: right;
}

.modal-buttons button {
    /*padding: 10px 20px;*/
    font-size: 1rem;
    /*margin-left: 10px;*/
    cursor: pointer;
}

.save-button {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 4px 70px;
    margin-top: 30px;
}

.edit-mode {
    display: none;
}

#confirm-up-to-date-bottom-button {
    padding: 10px 20px;
}

.address-input {
    flex: 2;
    text-align: left;
    padding-bottom: 5px;
    margin: 0;
}

.address-input input {
    margin-bottom: 10px;
}

.display-mode {
    display: block;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    color: #fff;
    /*background-color: var(--color-bg-surface);*/
    /*border-radius: 40px;*/
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.spin {
    animation: spin 2s linear infinite;
}

/*--Flags displayer*/
.flagDisplayer {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap; /* Add this line to enable wrapping */
}

.flag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    margin-right: 10px;
    width: min-content;
    border-radius: 10px;
    cursor: pointer;
}

.flag:hover {
    color: var(--color-text-hover);
}

.flag i {
    color: var(--color-text-primary);
    margin: auto 0;
    padding-left: 10px;
}

.flag p {
    padding-right: 10px;
    margin-right: 0;
    cursor: pointer;
}

.flag p:hover {
    color: var(--color-text-hover);
}

#modal-flags-edit {
    flex-direction: row;
    justify-content: flex-start;
    /*margin-top: 20px;*/
}

.flags-list {
    width: auto;
    text-align: left;
    border: 1px solid var(--color-border);
    padding: 5px 15px;
    /*color: var(--color-text-primary);*/
}

.flag-item {
    display: flex;
    flex-direction: row;
    vertical-align: middle;
}

.flag-item input {
    margin: auto 0;
}

/*--Companies displayer--*/
.reference-table {
    margin-top: 20px;
    /*margin-bottom: 30px;*/
}

.reference-table p,
.reference-table a {
    height: auto;
    font-size: 1.1rem;
}

.reference-table i {
    cursor: pointer;
    transition: 0.5s;
}

.reference-table i:hover {
    color: var(--color-text-hover);
}

/*Search bar*/
.search-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
}

.search-container input {
    margin-right: 15px;
}

#new-industry-field {
    width: 40%;
    margin-left: 10px;
}

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

.custom-modal-content {
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg-surface);
    margin: 15% auto;
    padding: 20px;
    width: 80%;
    max-width: 500px;
    min-width: 200px;
    text-align: center;
    border-radius: 20px;
}

.confirm-alert-button{
    padding: 4px 15px;
    margin: 0 3px;
}

.confirm-alert-text{
    text-align: center;
    margin-bottom: 30px;
}

#export-window .custom-modal-content{
    flex-direction: row;
    justify-content: center;
}

#export-window .custom-modal-content button{
    width: 110px; /* Set the width */
    height: 110px; /* Set the height */
    border-radius: 50%; /* Make it a circle */
    background-color: var(--color-bg-surface-2);
    margin: 20px 30px;
}

#export-window .custom-modal-content button:hover{
    background-color: var(--color-bg-surface-3);
}

#export-window .custom-modal-content button i{
    font-size: 3rem;
}

.print-text{
    display: none;
}

/* Addresses */

#company-modal-addresses, #person-modal-addresses, .person-addresses-container, .addresses-container{
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.add-address-btn, .person-add-address-btn{
    background-color: var(--color-bg-surface-2);
    padding: 2px 15px;
    margin-left: 70px;
    margin-bottom: 10px;
}

.delete-address-btn, .person-delete-address-btn{
    color: var(--color-text-primary);
    font-size: 1.5rem;
    /*margin: auto 0 auto 10px;*/
    margin-top: 5px;
    margin-left: 10px;
    transition: 0.5s;
    cursor: pointer;
}

.delete-address-btn:hover, .person-delete-address-btn:hover{
    color: var(--color-text-hover);
}

.textBelowTableModal p{
    font-size: 1.1rem;
    margin-bottom: 30px;
    margin-top: 10px;
}

#exportTextModal{
    text-align: right;
    margin-right: 30px;
    cursor: pointer;
}


/* Print view */

@media print{
    #wing-dashboard{
        display: none;
    }

    .logout-form{
        display: none;
    }

    .search-container{
        display: none;
    }

    .selector-menu{
        display: none;
    }

    #logo{
        display: none;
    }

    #loadMoreButton{
        display: none;
    }

    #exportText{
        display: none;
    }

    :root {
        --color-bg: #ffffff;
        --color-bg-surface: #ffffff;
        --color-bg-surface-2: #ffffff;
        --color-bg-surface-3: #ffffff;
        --color-text-primary: #000000;
        --color-text-hover: #000000;
        --color-text-deactivated: #000000;
        --color-border: #000000;
        --color-button: #000000;
        --color-button-hover: #000000;
    }

    .dashboard-content{
        width: 90%;
    }

    .main-dashboard{
        margin-top: 0;
        display: flex;
        flex-direction: column-reverse;
    }

    /* Hide the last column in all tables */
    table th:last-child,
    table td:last-child {
        display: none;
    }

    h1 {
        font-size: 15px;
    }

    h2, .modal-content h2 {
        font-size: 15px;
        margin: 0;
    }

    table, a, table a, p, #roundEurosText, .modal-content p, .modal-content a {
        font-size: 10px;
        margin: 0;
        line-height: 20px;
    }

    table{
        margin-top: 20px;
    }

    td{
        padding: 5px;
    }

    #r_periodnoflow{
        width: auto;
    }

    .print-text{
        display: block;
        text-align: center;
    }


    /* Modal*/


    .modal{
        position: relative;
        width: auto;
        height: auto;
        overflow: inherit;
        margin-bottom: 100%;
    }

    .modal-content{
        width: 90%;
        margin: 20px 0 0 0;
        height: 100%;
        padding: 0;
        border-radius: 0;
        max-height: 3000px;
        overflow-y: inherit;
    }

    .modal-field{
        margin: 0;
    }

    .close{
        display: none;
    }

    .bi-trash{
        display: none;
    }

    .bi-pencil{
        display: none;
    }

    #add-company-row, #add-opportunity-row, #add-contact-row, #confirm-up-to-date-bottom-button, #flag-add-company-row, #flag-add-contact-row{
        display: none !important;
    }

    .modal-title-container{
        margin-bottom: 10px;
    }

    .flagDisplayer{
        margin: 0 0 10px 0;
    }

    .flag{
        margin: 2px;
    }

    .reference-table{
        margin: 0 0 5px 0;
    }

    .reference-table td{
        padding: 5px;
    }
}

@media (max-width: 950px) {
    .keycode-hint{
        display: none;
    }
}