*{
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background-image: url('./Assets/Mainbg.jpg');
    
}

.content{
    margin: 20px;
}


.top-bar h1{
    color: rgb(255, 255, 255);
    -webkit-text-stroke: .5px rgb(255, 255, 255);
}
.top-bar p{
    color: white;
    margin-top: 4px;
    border-top: 1px solid white;
    border-bottom: 1px solid white;
    padding: 5px;
    display: inline-block;
}


.TotalTime{
    margin-top: 25px;
    padding: 15px;
    color: white;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.TotalTime p{
    margin-bottom: 10px;
}
.TotalTime div{
    display: flex;
    justify-content: space-between;
    
}


.Subjects h2{
    color: white;
    margin-top: 25px;

}
.subject-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
    gap: 20px;
}
.subject-list div{
    margin-top: 10px;
    padding: 15px;
    color: white;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.subject-list div h3{
    margin-bottom: 10px;
}
.add{
    display: flex;
    justify-content: center;
    align-items: center;
}
.add button:hover{
    box-shadow: 10px 10px 5px #00000067;
}
.add button{
    background-color: #ffffff;
    color: #010235;
    font-weight: bold;
    font-size: 16px;
    padding: 8px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}
.fa-plus{
    font-size: 50px;
    
}

.Start{
    margin-top: 25px;
    padding: 15px;
    color: white;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: grid;
    justify-content: center;
    align-content: end;
    align-items: center;
}
.Start h1{
    text-align: center;
}
.Start p{
    text-align: center;
}
.Start button{
    background-color: #ffffff;
    color: #010235;
    font-weight: bold;
    margin-top: 20px;
    font-size: 16px;
    padding: 6px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}
.Start button:hover{
    box-shadow: 10px 10px 5px #00000067;
}


.notes{
    margin-top: 25px;
    padding: 15px;
    color: white;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: grid;
    justify-content: center;
    align-content: end;
    align-items: center;
}
.notes h2{
    text-align: center;
    margin-bottom: 15px;
}
.input-container{ 
    display: grid;
    justify-content: center;
    align-content: end;
    align-items: center;
    margin-bottom: 20px; 
}
input[type="text"]{ 
    padding: 6px; 
    width: 250px; 
}
.input-container button{
    align-items: center;
    background-color: #ffffff;
    color: #010235;
    font-weight: bold;
    margin: 10px;
    margin-left: 70px;
    margin-right: 70px;
    padding: 6px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}
.input-container button:hover{
    box-shadow: 10px 10px 5px #00000067;
}
.notes ul{ 
    list-style-type: none; 
}
.notes li{
    margin: 10px; 
    gap: 10px;
    display: flex; 
    align-items: center; 
}
.delete-btn{ 
    background-color: #ffffff;
    color: red;
    font-weight: bold;
    margin: 10px;
    padding: 6px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}
.delete-btn:hover{
    box-shadow: 10px 10px 5px #00000067;
}
.checkbox{
    accent-color: green;
    cursor: pointer;
}

.stopwatch{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.4);
}
.hidden{
    display: none;
    pointer-events: none;
}
#display{
    font-size: 40px;
    color: white;
}
#watch div{
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15); 
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-align: center;
}


#res-stop{
    background-color: #ffffff;
    color: black;
    font-weight: bold;
    margin: 10px;
    padding: 5px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}
#res-stop:hover{
    box-shadow: 10px 10px 5px #00000067;
}

#Stop{
    background-color: #ff0000;
    color: white;
    font-weight: bold;
    margin: 10px;
    padding: 8px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
}