body {
    margin: 0;
    padding: 0;
    background-image: url(IMG_0184.jpeg);
    background-size: cover;
    background-position: center;

    color:#ffffff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 5px;
    min-height:100vh;
    overflow:hidden;
}

.dashboard-container{
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 15px;
    width:100%;
    max-width:1100px;
    padding: 10px 20px;
    align-items: center;
}

.quote-section{
    grid-column: 1/ -1;
    text-align:center;
    margin-bottom: 5px;
}

.quote-section p{
    font-family: 'Georgia', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: #e0e0e0;
    margin:0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8)
}

.left-column{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height:100%;
    box-sizing:border-box;
    text-align: left;
}

.right-column{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    min-height: 410px;
    height: 100%;
    box-sizing: border-box;
    background-color: rgba(0,0,0,0.3);
    padding: 25px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.search-section {
    width:100%;
    text-align: center;
}

.search-section form{
    width:100%;
}

.search-section input{
    width: 100%;
    max-width: 100%;
    padding: 16px 24px;
    background-color: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1.1rem;
    outline: none;
    box-sizing:border-box;
    text-align: center;
}

.clock-section{
    width:100%;
    text-align: center;
    margin:auto 0;
}

.clock-section h1{
    font-size: 8rem;
    margin: 0;
    font-weight: 400;
    text-shadow: 0 4px 20px rgba(0,0,0,0.8);
    width: 100%;
}

.clock-section p{
    color:#dddddd;
    font-size: 2rem;
    margin: 5px 0 0 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.links-grid{
    display: flex;
    gap: 15px;
    width:100%;
}

.link-card{
    flex: 1;
    text-align: center;
    background-color: rgba(0,0,0,0.6);
    color:#ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.link-card:hover{
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}


.focus-section h2, .todo-section h2{
    font-size:1.5rem;
    margin-bottom:10px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    text-align: center;
}

.focus-section input, .todo-section input{
    width:100%;
    padding: 12px 15px;
    font-size:1rem;
    background-color: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color:#ffffff;
    outline: none;
    box-sizing: border-box;
    text-align: center;
}

#todo-list{
    list-style-type: none;
    padding: 0;
    margin-top: 15px;
    max-height: 110px;
    overflow-y: auto;
    text-align: center;
}

#todo-list li{
    background: rgba(0,0,0,0.5);
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    text-align: left;
}

#todo-list li span{
    white-space: nowrap;
    word-break: break-word;
    overflow-wrap: break-word;
    flex: 1;
    margin-left: 10px;
}

.delete-btn{
    background: none;
    border:none;
    color: #ff5555;
    cursor: pointer;
    font-size: 1rem;
}




