/*
text: #F2F2F2 
body: #1C1C1E
figure backgrounds: #2A2A2C;
highlights: #B388FF
buttons: #00E5C3 hover: #90c0d1
*/

* {
    font-family: 'Fira Sans', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    color: #F2F2F2;
    min-height: 100vh;                  
    background: radial-gradient(circle at top left, rgba(179,136,255,0.15), transparent 50%),
        radial-gradient(circle at bottom right, rgba(0,229,195,0.15), transparent 50%),
        #1C1C1E;
    display: flex;                  
    flex-direction: column;         
}

.container {
    width: 100%;             
    margin: 0;               
    padding: 10px 20px;     
    display: flex;
    justify-content: space-between;
    align-items: center;
}

  
.name {
    font-size: 35px;
    font-weight: bold;
    margin: 0px 50px 0 0;
}
  
.nav > a {
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

#add-tasks > h2, #tasks > h2{
    text-align: left;
    margin: 20px;
    font-size: 2rem;
    font-weight: 700;
    text-decoration: underline 2px solid #B388FF;
    text-underline-offset: 8px;
    transition: color 0.3s ease;
}

#add-tasks > h2:hover, #tasks > h2:hover, #clear-section > h2:hover{
    color: #C0C0C0;
}


.task-card {
    background-color: #232323;
    padding: 15px;
    margin: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    width: 1000px;
}

.task-card:hover{
    transform: scale(1.01);
    border: #00E5C3;
}

.task-card, .task-list{
    box-shadow: 0 0 10px rgba(95, 209, 255, 0.2);
}

.task-card:hover, .task-list:hover{
    transform: scale(1.01);
}


input, button {
    margin: 5px;
    padding: 8px;
    border-radius: 5px;
    border: none;
}

input {
    background-color: #333;
    color: #F2F2F2;
}

button {
    background-color: #00E5C3;
    color: #1C1C1E;
    cursor: pointer;
}

button:hover {
    background-color: #90c0d1;
    transform: scale(1.04);
}

#clear-section {
    display: flex;
    flex-direction: column;
}

#clr-btn {
    width: 200px;
    margin: 20px 0 0 50px;
    font-size: 18px;
}

#no-found-tasks {   
    width: 300px;         
    font-size: 1.2rem;            
    font-weight: 500;             
    text-align: center;
    margin: 25px 10px;               
    background: rgba(255, 255, 255, 0.05); 
    padding: 10px 15px;      
    border-radius: 6px;         
    border: 1px solid rgba(255, 255, 255, 0.1); 
    
}

#app-footer {
    margin-top: auto;    
    padding: 15px 10px;
    text-align: center;
}

#app-footer > p {
    text-decoration: underline 2px solid #B388FF;
    text-underline-offset: 8px;
    margin: 0;
}


#NotCurrentPage {
    text-decoration: none;
    color: #aaa;
    padding: 8px 12px;
    border-radius: 8px;
}
  
#NotCurrentPage:hover {
    background-color: #00e5c3ec;
    color: black;
    border-radius: 15px;
    transform: translateY(-4px);
    transition: background 0.3s;
}
  
#cCurrentPage {
    color: #fff;
    font-weight: bold;
}

.btn-secondary {
    margin: 5px;
    padding: 9px;
    border-radius: 20px;
    border: none;
    width: 120px;
    color: #1C1C1E;
    cursor: pointer;
    text-decoration: none;
    background-color: #00E5C3;
}

.btn-secondary:hover {
    background-color: #90c0d1;
    transform: scale(1.05);
}
