:root {
    --background-color: rgb(27, 27, 27);
    --text-color: #ccc;
}
/* Styl dla ekranów o szerokości mniejszej niż 600px */
@media (max-width: 1000px) {
    body {
        background-color: lightblue;
    }
    .container {
        flex-direction: column;
    }
    #content_chart{
        display:none;
    }
    #content_text{
        margin: 50px auto 0 auto;
        width: 95%;
    }
    .content_text_box_date{
        display:none;
    }
    .search_bar_content{
        width: 29px;
    }
    #show_settings{
        width: 60%;
        right: -60%; /* Ukryj div poza obszarem widocznym po prawej stronie */
    }
    #content_add_article{
        display:none;
    }
    #default_content_search_bar{
        padding: 15px 0 15px 0;
        width: 100%;
    }
    #login_conteiner, #register_conteiner{
        width: 70%;
    }
    #open_article_tag{
        display:none;
    }
    #open_article_content_area,#open_article_settings{
        width: 100%;
	    padding:0;
        font-size: 15px;
    }
    #settings_conteiner{
        width: 90%;
    }
    #open_article_title{
        white-space: wrap; 
    }
    .content_text_box_title{
        white-space: wrap; 
    }
    #open_article_content_area{
        border: none;  
    }
    #tags{
    	display:none;
    }
    #new_article_conteiner{
    	width: 100%;
    }
    #new_article{
    	width:90%;
    }
    #conversation_box{
    	width:75%;
    }
    #settings_conteiner_left_panel{
    	width:40%;
    }
    #content_sort_article{
    	width:15%;
    }
    #new_device_box{
        width: 90%;
    }
}

/* Styl dla ekranów o szerokości od 600px*/
@media (min-width: 1000px) {
    body {
        background-color: lightgreen;
    }
    #content_chart{
        display:;
    }
    #content_text{
        margin: 50px 50px 0 auto;
        width: 70%;
    }
    .content_text_box_date{
        display:;
    }
    .search_bar_content{
        width: 320px;
    }
    #show_settings{
        width: 17.5%;
        right: -20%; /* Ukryj div poza obszarem widocznym po prawej stronie */
    }
    #content_add_article{
        display:;
    }
    #default_content_search_bar{
        padding: 15px 0px 15px 0;
        width: 100%;
    }
    #login_conteiner, #register_conteiner{
        width: 15%;
    }
    #open_article_tag{
        display:;
    }
    #open_article_content_area,#open_article_settings{
        width: 70%;
	    padding:0;
    }
    #open_article_content{
        width: 95%;
    }
    #settings_conteiner{
        width: 70%;
    }
    #open_article_title{
        white-space: wrap; 
    }
    .content_text_box_title{
        white-space: nowrap; 
    }
    #open_article_content_area{
        border: 1px dashed #ccc;  
    }
    #tags{
    	display:;
    }
    #new_article_conteiner{
    	width: 70%;
    }
    #new_article{
    	width:60%;
    }
    #conversation_box{
    	width:25%;
    }
    #settings_conteiner_left_panel{
    	width:25%;
    }
    #content_sort_article{
    	width:10%;
    }
    #new_device_box{
        width: 30%;
    }
}



body{
    background-color: rgb(27, 27, 27);
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
    font-size: var(14px);
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

#container{
    width: 100%;
    height: 100%;
    margin: 0;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes slideDown {
    from {
      top: -50px;
      opacity: 0;
    }
    to {
      top: 0;
      opacity: 1;
    }
  }


 /* Dostosowanie stylów Quill.js */
    .ql-editor {
        color: #fff;
        max-height: 600px;
        white-spcae:normal !important;
    }
    .ql-toolbar {
        background-color:whitesmoke;
    }

    .ql-container{
        max-height: 600px;
    }

    .ql-code-block-container{
        background: black;
        padding: 15px;
        border-radius: 15px;
    }

.link{
    color: white;
    text-decoration: none;
}

a{
    color: blue;
}

.loader_wrapper{
    background-color: black;
    opacity: 0.9;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index:5;
    display: none;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: rotate 2s linear infinite;
    position: fixed;
    top: 50%; 
    left: 50%; 
    z-index:10;
}



#notification{
    left: 0;
    bottom: 0;
    width: fit-content;
    min-width: 200px;
    position: fixed;
    padding: 20px;
    text-align: center;
    z-index: 2000;
    
}

.notification_error {
    right: 0;
    bottom: 0;
    width: fit-content;
    min-width: 200px;
    height: fit-content;
    padding: 20px;
    background-color: rgb(179, 70, 70);
    margin-top: 20px;
    border-radius: 10px;
    z-index: 2000;
    margin-right: 0;
}

.notification_ok {
    right: 0;
    bottom: 0;
    width: fit-content;
    min-width: 200px;
    height: fit-content;
    padding: 20px;
    background-color: rgb(88, 179, 70);
    margin-top: 20px;
    border-radius: 10px;
    z-index: 2000;
    margin-right: 0;
}

#login_conteiner, #register_conteiner{
    margin: auto;
    background-color: rgb(54, 54, 54);
    height: fit-content;
    text-align: center;
    border-radius: 10px;
    padding-bottom:10px ;
    font-size: 15px;
}

#login_content, #register_content{
    display: block;
    margin-top: 20px;
}

.login_input, .register_input{
    width: 85%;
    padding: 10px;
    margin-bottom: 20px;
    border: 2px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    box-sizing: border-box;
}

.login_input_header, .register_input_header{
    padding: 10px;
    width: 85%;
    margin: 0 auto 0 auto;
}

.login_input_header_text,.register_input_header_text{
    text-align: start;
}

#login_conteiner_version{
    width: 100%;
    display: flex;
    align-content: flex-end;
    justify-content: center;
    align-items: flex-end;
    text-align: center;
}

.submit_button{
    border: 1px solid transparent;
    padding: 10px;
    border-radius: 10px;
    width: 85%;
    font-size: 15px;
    color: white;
    margin: 0 auto 0 auto;
    cursor: pointer;
    background-color:rgb(69, 141, 51);
}

#submit_button:hover{
    background-color: rgb(79, 161, 59);
}

#new_user{
    color:white;
    background-color: rgb(54, 54, 54);
    width: 60%;
    height: fit-content;
    border-radius: 10px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15%;
}

#new_user_text{
    font-size: 30px;
    padding: 10%;
}

/* ############################################################################################## */
/* Content css*/

#fog{
    width: 100%;
    height: 1000%;
    position: fixed;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8) ;
    display: none;
}

#header{
    width: 100%;
    height: fit-content;
    border-bottom:1px solid rgb(177, 177, 177) ;
    display: flex;
    flex-direction: row;
    
}

#tile{
    padding: 10px;
    width: 100%;
    display: flex;
}

#header_title{
    padding: 10px 0 10px 10px;
    font-size: larger;
}

#profile_icon, .add_article{
    width: fit-content;
    padding: 10px;
    right: 0;
    cursor: pointer;
}

.search_bar_conteiner{
    padding: 15px 10px 15px 0;
    width: fit-content;
}


.search_bar_content{
    border: 1px solid #ccc;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    
}

.header_search{
    background-color: rgb(24, 24, 24);
    color: white;
    border: 1px solid transparent;
    border-radius: 5px;
    width: auto;
    height: 30px;
    font-size: 14px;
    padding: 10px 10px 10px 0;
}

.header_search:focus{
    outline: none;
}

#show_more_list{
    width: 20%;
    height: 100%;
    top:0;
    background-color: rgb(54, 54, 54);
    border-radius: 0 10px 10px 0;
    position: absolute;
    left: -20%; /* Ukryj div poza obszarem widocznym */
    z-index: 1001;
}

#show_settings{
    height: 100%;
    top: 0;
    background-color: rgb(54, 54, 54);
    border-radius: 10px 0 0 10px; /* Zmiana border-radius dla prawej strony */
    position: fixed;
    z-index: 1001;
}

#show_settings_header{
    width: 100%; 
    height: fit-content; 
    display: flex; /* Ustawienie na flexbox */
    justify-content: flex-end; /* Wyrównanie do prawej strony */
}

#show_settings_user_name{
    padding: 30px 50px 0 0 ;
}

.show_settings_link{
    color: white;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

#close_show_more_list_header{
    width: 100%; 
    height: fit-content; 
}

#close_show_more_list, #close_settings{
    cursor: pointer; 
    padding: 5px;
    background-color: rgb(83, 83, 83);
    margin: 20px 20px 0 auto ;
    border-radius: 10px;
    width: fit-content;
    
}

#close_settings{
    margin: 20px auto 0 20px;
}

#content{
    display: flex;
    flex-direction: row;
}

#content_text{
    height: fit-content;
}

#content_chart{
    width: 15%;
    height: fit-content;
    margin: 50px auto 0 0;
}

#content_chart_text_content{
    padding: 20px;
}

.content_chart_text_content_div{
    display: flex;
    flex-direction: row;
}

.content_chart_title{
    font-size: 30px;
    padding: 5px 0 20px 0;
}

.content_chart_text{
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 100%;
}

#content_sort_article{
    background-color: rgb(54, 54, 54);
    border-radius: 5px;
    margin-right: 10px;
    font-size: 14px;
    height: 35px;
    margin-top: 15px;
    text-align: center;
    cursor: pointer;
}

#dropdownList {
    list-style: none;
    padding: 0;
    margin: 5px 0;
    background-color: rgb(54, 54, 54);
    display: none; /* Ukrycie listy */
    z-index: 2000;
    position: absolute;
    width: 200px;
}

#dropdownList li {
  padding: 10px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

#dropdownList li:hover {
  background-color: rgb(80, 80, 80);
}





#content_text_box{
    width: 100%;
    height: fit-content;
    z-index: 1000;
}

#show_more_articles{
    margin: 10px auto 0 auto;
    width: fit-content;
    cursor: pointer;
}

#noarticle{
    width: 100%;
    height: 200px;
    display: none; /* Ustawienie kontenera na flexbox */
    justify-content: center; /* Wyśrodkowanie tekstu w poziomie */
    align-items: center;
    margin-top: 20px;
}

.content_text_box_text{
    padding: 20px;
}

.content_text_box_top{
    display: flex;
    flex-direction: row;
}

.content_text_box_bottom{
    display: flex;
    flex-direction: row;
}

.content_text_box{
    border-bottom: 1px solid white;
    width: 100%;
    height: fit-content;
}

.content_text_box_date{
    margin: 0 0 0 auto;
    padding: 5px 0 0 0 ;
    font-size: 20px;
}

.content_text_box_title{
    color: #3498db;
    font-size: 30px;
    padding: 0 10px 0 0;
    cursor: pointer;
    overflow: hidden; /* Ukryj nadmiar tekstu */
    text-overflow: ellipsis; /* Dodaj wielokropek na końcu przyciętego tekstu */
}

.content_text_box_title_link{
    color: #3498db;
    text-decoration: none;
}

.content_text_box_favorite{
    margin: 5px 10px 0 0;
    cursor: pointer;
}


#content_add_article, #content_filtr{
    background-color: rgb(38, 117, 38);
    border-radius: 5px;
    margin-left: 10px;
    font-size: 14px;
    width: 10%;
    height: 35px;
    margin-top: 15px;
    text-align: center;
    cursor: pointer;
}

#content_filtr{
    background-color: rgb(83, 83, 83);
}

#logout{
    background-color: rgba(187, 0, 0);
    padding: 10px;
    width: fit-content;
    margin:10px 0 0 10px;
    border-radius: 10px;
    width: 90%;
    text-align: center;
}

#logout:hover{
    background-color: rgb(139, 1, 1);
}

#show_more_list_text_div{
    width: 90%;
    height: fit-content;
    padding: 10px;
}

.show_more_list_text{
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px;
    margin-left: 10px;
}

.show_more_list_text:hover{
    background-color: rgba(0, 0, 0, 0.5);
}

#big_search_bar{
    z-index: 1000;
    display: none;
    position: absolute;
    margin-top: 3%;
    left: 10%;
    height: fit-content;
    width: 80%;
}

.big_search_bar_conteiner{
    background-color: rgb(24, 24, 24);
    border-radius: 10px;
    border: 2px solid #3498db;
    
}

.big_search_bar_content{
    display: flex;
    flex-direction: row;
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    border: 2px solid #777777;
}

#big_search_bar_alternatiw_text{
    padding: 30px;
    text-align: center;
}

#big_search_bar_articles{
    margin-bottom: 10px;
}

.show_hide_more_articles {
    padding: 15px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    cursor: pointer;
}


/* ### Open article css ### */

#open_article_content{
    height: fit-content;
    min-height: 400px;
    margin: 50px auto 0 auto;
    text-align: left;
}

#open_article_content_box{
    display: flex;
    flex-direction: row;
}


#open_article_content_area{
    height: fit-content;
    min-height: 600px;
    text-align: left;
    outline: none; 
}

#open_article_header{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    margin:0;
}

#open_article_date, #open_article_autor{
    padding: 20px;
    margin: 0 0 0 auto;
    color: orange;
}


.files_container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    border-radius: 6px;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
}

.file_item {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 6px;
    transition: background-color 0.2s;
    cursor: pointer;
}

.file_icon {
    margin-right: 8px;
    font-size: 16px;
}

.delete_file_from_article{
    height: 15px;
    padding: 0 10px;
    display: none;
}

.copy_file_from_article{
    height: 15px;
    padding: 0 10px;
}

.file_name {
    color: #24292e; /* standardowy kolor tekstu GitHub */
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color:white;
}

#open_article_autor{
    padding: 0 20px 0 20px;
}

#open_article_title{
    color: #3498db;
    font-size: 30px;
    width: 80%;
    overflow: hidden; 
    text-overflow: ellipsis;
    outline: none;
    padding: 20px;
}

#open_article_tag{
    width: 20%;
    left: 0;
    top: 0;
    float: right;
    padding: 0 0 0 20px;  
}

#open_article_tag_box{
    border: 1px dashed #ccc;
    height: fit-content;
}

#open_article_tag_box_content{
    padding: 20px;
    width: 100%;
}

#open_article_tag_box_header{
    color: #3498db;
    font-size: 30px;
    margin: 0 0 20px 0;
}

#open_article_tag_box_content_tags{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: fit-content;
    width: 85%;
}

#open_article_tag_box_content_tags_2{
    width: fit-content;
    display: flex;
    flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
    height: fit-content;
}

.open_article_tag_content, .new_article_tag_content{
    width: fit-content;
    max-width: 100%;
    height: 40px;
    margin: 0 10px 0 0;
    color: orange;
}

.open_article_tag_content_div, .overlay, .new_article_tag_content_div{
    padding: 10px;
    max-width: 100%;
    height: 20px;
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

 .small_text_under_header_hahstag{
    font-size: 16px;
    color: white;
    margin: 20px 0 0 0;
}



.new_tag{
    outline: none;
    border: 1px solid #ccc;
    background: none;
    color: white;
    padding: 15px 5px 15px 5px;
    max-width: 100%;
    width: 100px;
    height: 20px;
    color: orange;
    font-size: 16px;
    display: flex;
    order: 1;
}


.new_tag_content{
    max-width: 100%;
    display: flex;
    word-wrap: break-word; 
    overflow-wrap: break-word; 
    box-sizing: border-box; 
}


#open_article_tag_add_tag{
    margin: 10px;
    cursor: pointer;
    height: 20px;
    display: none;
}

#open_article_text{
    margin-top: 15px;
    outline: none;
    padding: 0 20px 20px 20px;
    min-height: 450px;
    box-sizing: border-box;
    
}

#open_article_settings{
    display: flex;
    flex-direction: row;
    margin-bottom: 20px;
    justify-content: end;
}

#delete_article{
    background-color: red;
    padding: 10px;
    margin: 0;
    width: fit-content;
    border-radius: 15px;
    cursor: pointer;
}

#edit_article, #save_article, #cancel_edit_article{
    background-color: rgb(54, 54, 54);
    padding: 10px;
    margin: 0 10px 0 0;
    width: fit-content;
    border-radius: 15px;
    font-size: large;
    color: white;
    cursor: pointer;
}

#download_article{
    margin: 0 10px 0 0;
    cursor: pointer;
    padding: 10px;
    background-color: rgb(54, 54, 54);
    border-radius: 15px;
    display: none;
}

#save_article{
    background-color: rgb(69, 141, 51);
}

#cancel_edit_article{
    margin: 0 10px 0 0;
}

.article_lock{
    margin: 0 10px 0 0;
    cursor: pointer;
    padding: 10px;
    background-color: rgb(54, 54, 54);
    border-radius: 15px;
}


/* New article */

#new_article{
    height: fit-content;
    min-height: 500px;
    margin: 50px auto 0 auto;
    text-align: left;
    display: flex;
    flex-direction: row;
}

#new_article_title {
    background-color: transparent; 
    border: none; 
    border: 1px solid #ccc; 
    color: white; 
    outline: none; 
    padding: 20px; 
    font-size: 18px; 
    width: 100%;
}


#new_article_title:focus {
    border-color: lightgrey; 
}

#new_article_file, #edit_article_file{
    margin-top: 20px;
    background-color: transparent; 
    border: none; 
    border: 1px solid #ccc; 
    color: white; 
    outline: none; 
    padding: 20px; 
    font-size: 18px; 
    width: 100%;
}

#new_article_text{
    width: 100%; 
    height: fit-content; 
    max-height: 650px;
    min-height: 300px;
    background-color: transparent; 
    color: white; 
    padding: 20px; 
    resize: none; 
    outline: none; 
}

#new_article_form_submit{
    background-color:rgb(69, 141, 51);
    border: none;
    color: white;
    font-size: 18px;
    margin-top: 25px;
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
}

#new_article_form_submit:hover{
    background-color: rgb(79, 161, 59);
}

#tags{
    width: 25%;
    margin: 0 0 0 5%;
}

#tags_conteiner{
    border: 1px solid #ccc; 
    color: white; 
    height: fit-content;
    max-height: 70%;
}

#tags_conteiner_text{
    padding: 20px;
}

#new_article_tag_add_tag{
    margin: 10px;
    cursor: pointer;
    height: 20px;
    width: 20px;
}

#tags_conteiner_text_new_tag, #tags_conteiner_text_new_tag_div{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    height: fit-content;
}

#tags_conteiner_text{
    display: flex;
    flex-direction: row;
}

/* Big search bar */

.search_bar_text_box{
    width: 100%;
    height: fit-content;
    padding: 15px;
}

.search_bar_text_box_date, .search_bar_text_box_top{
    display: flex;
    flex-direction: row;
    margin-right: 20px;
    justify-content: space-between;
}

.search_bar_text_box_title{
    display: flex;
    flex-direction: column;
    margin-right: 20px;
    justify-content: space-between;
}

/* Ustawienia */

#settings_conteiner{
    height: fit-content;
    min-height: 700px;
    margin:50px auto 0 auto;
    border-top: 1px solid #ccc;
    padding: 20px 0 20px 0;
    position: relative;
    display: flex;
    flex-direction: row;
}

#conversation_box{
    height: 400px;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(24, 24, 24);
    border: 0.5px solid rgb(96, 96, 96);
    border-radius: 10px;
    z-index: 1002;
    display: none;
}

#settings_conteiner::before {
    content: "Ustawienia";
    position: absolute;
    top: -0.75em; /* Adjust based on your border width and text size */
    left: 10%;
    transform: translateX(-50%);
    background: rgb(24, 24, 24); /* Match with the background of your container */
    padding: 0 5px; /* Add padding to make the text look better */
    font-size: larger; /* Adjust based on your preference */
}

.settings_option{
    padding: 10px;
    margin: 2px;
    border-radius: 10px;
    cursor: pointer;
    
}

.settings_option:hover{
    background: rgb(54, 54, 54);
    
}

.between_settings_line{
    width: 100%;
    height: 1px;
    background: #ccc;
    padding: 0;
    margin: 5px 0 5px 0;
}


#settings_conteiner_right_panel{
    width: 70%;
}

#settings_conteiner_right_panel_content{
    padding: 30px;
    margin-left: 50px;
    height: fit-content;
}


/* account */

.settings_display_info{
    padding: 5px;
    border: 1px solid #ccc;
    width: 40%;
    border-radius: 5px; 
    outline: none;
}

.settings_display_info_headers{
    margin: 30px 0 5px 0;
}

#account_name{
    
}

.settings_display_info_content{
    display: flex;
    flex-direction: row;
}

.settings_display_info_content_img{
    padding: 5px 5px 5px 20px;
    cursor: pointer;
}


#delete_account_conteiner{
    margin: 50px 0;
}

#delete_account_conteiner_header{
    color: red;
    margin: 0 0 15px 0;
    font-size: 30px;
    font-weight: 600;
}

#delete_account_conteiner_text{
    
}

#delete_account{
    background-color: rgb(54, 54, 54);
    border-radius: 10px;
    padding: 10px 20px 10px 20px;
    width: fit-content;
    color: red;
    cursor: pointer;
}

#conversation_box_title{
    width:100%; 
    height:fit-content; 
    margin: 0; 
    border-radius:10px 10px 0 0;
    display: flex;
    flex-direction: row;
}

#delete_account_confirmation{
    background: none;
    outline:none;
    border: 1px solid #ccc;
    color:white;
    width:100%;
    padding: 5px;
    border-radius: 5px;
}

#delete_account_button{
    border: 1px solid #ccc;
    width:100%;
    border-radius: 5px;
    margin-top: 15px;
    background: rgba(187, 0, 0);
}


#edit_account_information{
    padding:  0 20px 0 20px;
}

.edit_account_information_input{
    width: 100%;
}

#change_account_name, #change_account_email{
    outline: none;
    background: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    width:100%;
    padding: 5px;
    color:white;
}

.edit_account_information_confirm_button{
    border: 1px solid white;
    text-align: center;
    width:100%;
    border-radius: 5px;
    margin-top: 15px;
    background: rgb(38, 153, 38);
    padding: 5px 0 5px 0;
    cursor: pointer;
}


#change_password_conteiner{
    
}

.change_password_input{
    background: none;
    padding: 5px;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 50%;
    color:white;
}

#change_password_button{
    width: 50%;
    border-radius: 5px;
    margin-top: 30px;
    padding: 5px 0 5px 0;
    background: rgba(187, 0, 0);
    text-align: center;
    cursor: pointer;
}

#first_authentication{
    margin: 30px 0 0 0;
}

#first_authentication_input{
    width: 100%;
    background: none;
    padding: 5px;
    outline: none;
    border:none;
    border-bottom: 1px solid #ccc;
    color: white;
    font-size: 1rem;
}

#first_authentication_button{
    border: 1px solid white;
    text-align: center;
    width: 100%;
    border-radius: 5px;
    margin-top: 15px;
    background: rgb(38, 153, 38);
    padding: 5px 0 5px 0;
    cursor: pointer;
}


#u2f_box{
    width: 100%;
    height: fit-content;
    
}

.u2f_keys{
    padding: 10px;
    width: fit-content;
    border: 1px solid white;
    border-radius: 5px;
    margin: 0 15px 0 0 ;
}

#u2f_box_child{
    display: flex;
    flex-direction: row;
}

#add_u2f_key{
    display: flex;
    align-content: center;
    align-items: center;
    cursor: pointer;
}

#u2fRegisterButton{
    border: 1px solid white;
    text-align: center;
    width: 90%;
    border-radius: 5px;
    margin-top: 15px;
    background: rgb(38, 153, 38);
    padding: 5px 0 5px 0;
    cursor: pointer;
    margin-right: auto;
    margin-left: 5%;
}

#u2f_key_name{
    outline: none;
    background: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 90%;
    padding: 5px;
    color: white;
    margin-right: auto;
    margin-left: 5%;
}


.delete_u2f_key{
    padding: 2px;
    background: red;
    text-align: center;
    border-radius: 5px;
    width: 30%;
    margin: 5px auto 0 0;
    cursor: pointer;
}

#new_device_conteiner{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    
}

#new_device_box{
    background-color: rgb(54, 54, 54);
    height: fit-content;
    text-align: center;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    margin-top: 150px;
}

.verification_option{
    border-radius: 10px;
    background-color: white;
    width: 60%;
    padding: 15px;
    margin: 0 auto 20px auto;
    display: flex;
    flex-direction: row;
}

.verification_option_text{
    width: 80%;
    color: black;
    text-align: left;
}

.verification_option_text_verify{
    width: 20%;
    color: blue;
    cursor: pointer;
}

.if_remember{
    width: 45%;
    margin: 2.5%;
    text-align: center;
    background-color: green;
    padding: 10px;
    cursor: pointer;
}

#if_remember{
    display: flex;
    flex-direction: row;
}

#email_code{
    border: 0px;
    width: 20%;
    margin: 0 auto 10px auto;
    padding: 5px;
}

#verify_email{
    background-color: green;
     width: 20%;
    margin: 10px auto 20px auto;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
}

/* Ukrywanie strzałek w polu input typu number */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}