* {
    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%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.name {
    font-size: 35px;
    font-weight: bold;
    margin-right: 50px;
}

.nav > a {
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

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

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

button {
    background-color: #00E5C3;
    color: #1C1C1E;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

#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;
}

#task-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 20px;
    width: 100%;
    margin: 0 auto;
}

.task-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex: 1 1 300px;
    min-width: 300px;
}

.about-cardx {
    background: #2A2A2C;
    padding: 30px 10px;
    border-radius: 12px;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content:flex-start;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

#a {
    border: 1px solid #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

#b {
    border: 1px solid #fff188;
    box-shadow: 0 0 10px rgba(255, 228, 95, 0.5);
}

#c {
    border: 1px solid #a8ff88;
    box-shadow: 0 0 10px rgba(95, 255, 103, 0.5);
}

#d {
    border: 1px solid #B388FF;
    box-shadow: 0 0 10px rgba(95, 209, 255, 0.5);
}

#a .title{
    color: white;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 20px;
    text-decoration: underline solid 2px #ff0000;
    text-underline-offset: 5px;
}
#b .title{
    color: white;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 20px;
    text-decoration: underline solid 2px #fff188;
    text-underline-offset: 5px;
}

#c .title{
    color: white;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 20px;
    text-decoration: underline solid 2px #a8ff88;
    text-underline-offset: 5px;
}
#d .title{
    color: white;
    font-size: 1.8em;
    text-align: center;
    margin-bottom: 20px;
    text-decoration: underline solid 2px #B388FF;
    text-underline-offset: 5px;
}

.about-cardx:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.6);
}

.task-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}



.about-cardx ul {
    list-style: none;
    padding: 0;
}

.about-cardx li {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 8px 0;
    font-size: 1.075rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.9;
    gap: 1rem;
}

.about-cardx li p {
    padding: 0 5px;
    font-size: 93%;
}

.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);
}


#button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #2A2A2C;
    margin: 30px auto;
    padding: 25px 30px;
    border-radius: 16px;
}


#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;
}
  
#CurrentPage {
    color: #fff;
    font-weight: bold;
}