body {
    margin:0;
    font-family: Arial;
    background:#f5f5f5;
}

header {
    background:#ff6a00;
    color:#fff;
    text-align:center;
    padding:15px;
    font-weight:bold;
}

.lista {
    padding:10px;
}

.card {
    display:flex;
    align-items:center;
    background:#fff;
    padding:12px;
    border-radius:12px;
    margin-bottom:10px;
    box-shadow:0 2px 6px rgba(0,0,0,0.1);
}

.icon {
    width:50px;
    height:50px;
    margin-right:12px;
}

.info {
    flex:1;
}

.nome {
    font-weight:bold;
}

.status {
    font-size:13px;
    color:gray;
}

button {
    background:#ff6a00;
    border:none;
    color:#fff;
    padding:8px 10px;
    border-radius:8px;
}

button:disabled {
    background:gray;
}

.popup {
    display:none;
    position:fixed;
    top:0;left:0;
    width:100%;height:100%;
    background:rgba(0,0,0,0.6);
}

.popup-box {
    background:#fff;
    padding:20px;
    margin:30% auto;
    width:80%;
    text-align:center;
    border-radius:10px;
}
