:root {
    --BLUE_OG: #0e4c80;
    --BLUE: #0064b8;
    --BLUE_HOVER: #007ee5;
    --RED: #DC221A; 
    --RED_HOVER: #ff0019;
    --RED_DARK: #b50017;
}

@font-face {
    font-family: 'DB_Reg';
    src: url('fonts/DB_Reg.ttf') format('truetype');
}

@font-face {
    font-family: 'DB_Med';
    src: url('fonts/DB_Med.ttf') format('truetype');
}

@font-face {
    font-family: 'DB_Bold';
    src: url('fonts/DB_Bd.ttf') format('truetype');
}

@font-face {
    font-family: 'DB_Thin';
    src: url('fonts/DB_Thin.ttf') format('truetype');
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: 'DB_Reg', Arial, sans-serif;
    font-size: 22px;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    min-width: 770px;
}

.container {
    width: 100%;
    max-width: 1000px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.top-bar {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center; /* Center the content within the top bar */
    padding: 10px 0;
    z-index: 1;
}
.top-bar-width-wrapper {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

#div_logo {
    display: flex;
    align-items: center;
    position: relative;
}

#logo {
    width: 47px;
}

#top_bar_toolsBar_text {
    color: #636363;
    font-size: 20px;
    font-weight: 100;
    margin-left: 10px;
    position: relative;
    top: 13px;
}
#top_bar_sketchUnivercity_wrap {
    font-size: 30px;
    margin-left: 5px;
    position: relative;
    left: -63px;
    top: -7px;
}

#top_bar_sketchUnivercity_text_by {
    color: #909090;
}

#top_bar_sketchUnivercity_text_Sketch {
    color: var(--RED);
}

#top_bar_sketchUnivercity_text_UniverCity {
    color: var(--BLUE_OG);
}

.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 0 10px;
}

.menu li {
    margin: 0 10px;
    padding: 5px 21px;
    color: #636363;
    cursor: pointer;
    border-radius: 65px;
    font-size: 22px;
}

.menu li:hover {
    background-color: #e0e0e0;
}

.menu .active {
    background-color: #eaeaea;
    color: var(--RED);
}



a {
    font-family: 'DB_Reg';
    font-size: 0.9em;
    color: #333;
    text-decoration: none;
}

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

@media screen and (max-width: 768px) {
    .menu li {
        margin: 0 5px;
        padding: 10px 10px;
    }

    .button {
        width: 100%;
        margin-bottom: 10px;
    }

    .buttons {
        flex-direction: column;
    }
}


.content
{
    width: 80%;
    padding: 0px 20px 20px 20px;
}

.button {
    background-color: #005F9B;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 15px;
    font-size: 28px;
    cursor: pointer;
    font-family: DB_Reg;
    width: 200px;
    margin: 20px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 33%);
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
    background-color: #0075bd;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}


.custom-hr {
    border: none;
    border-top: 1px solid lightgray;
    width: 100%;
    margin: 20px auto;
}


.description, .installation {
    margin-top: 26px;
    text-align: left;
}


.appIcon {
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 9%);
    border-radius: 10px;
    margin: 15px;
    cursor: pointer;
    position: relative;

}



.appList {
    border: 7px solid #FFFFFF;
    border-radius: 1.2rem;
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 11%);
    width: 93%;
    height: 100px;
    margin: 22px;
}


.appStudentBorder {
    border: 7px solid #e3edfc;
}
table {
    caption-side: bottom;
    border-collapse: collapse;
}


.appName{
    margin: 11px 0px 0px 0px;
    font-size: 23px;
    cursor: pointer;
}

.appName:hover {
    color:var(--RED);
}

.appDetail {
    font-size: 19px;
    color: gray;
}


.download_button {
    background-color: #4490e0;
    border-radius: 26px;
    color: white;
    height: 33px;
    width: 83px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    position: relative;
    top: 4px;
}

.download_button:hover {
    background-color: #68acf3;
}
.text_in_download_button
{
    position: relative;
    top: 3px;
}

.text_download_count
{
    font-size: 22px;
    position: relative;
    top: -2px;
    left: 0px;
}

.download_count_wrape
{
    position: relative;
    top: 14px;
    opacity: 40%;
    
}

.back_button {
    background-color: #D6D6D6;
    border-radius: 20px;
    color: white;
    width: 73px;
    height: 34px;
    position: relative;
    margin-left: 20px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
}


.back_button:hover {
    background-color: #888888;
}

.back_button_text {
    position: relative;
    top: 3px;
}

hr {
    border-top: 1px solid #dbdbdb;
}

.main-line {
    border: none;
    border-top: 1px solid #8f8f8f;
    margin-top: 24px;
}

.information-header {
    font-size: 30px;
    font-family: DB_Bold;
    margin-bottom: 20px;
    text-align: left;
}

.information-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -3px 0;
}

.information-title {
    font-size: 21px;
    color: #999;
}

.information-value {
    font-size: 21px;
    color: #000;
}

.information-line {
    border: none;
    border-top: 1px solid #ddd;
}
.youTube_iframe
{
    width: 100%;
    height: 423px
}



h2 {
    display: inline;
    font-size: 31px;
    vertical-align: middle;
    color: var(--RED);
}


.body_text {
    margin-top: 7px;
    font-size: 24px;
    margin-bottom: 20px;
}