.toast-paciente {
background: #ffffff;
color: #333;
border-left: 5px solid #28a745;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
padding: 15px;
margin-bottom: 10px;
width: 300px;
font-family: 'Segoe UI', sans-serif;
animation: slideIn 0.4s ease;
}

.toast-paciente strong {
font-size: 1.1em;
color: #007d8a;
}

.toast-paciente small {
color: #666;
font-size: 0.85em;
}

.toast-paciente button {
background-color: #28a745;
color: white;
border: none;
padding: 6px 12px;
font-weight: bold;
border-radius: 4px;
margin-top: 10px;
}

.toast-paciente button:hover {
background-color: #218838;
}

@keyframes slideIn {
from {
	opacity: 0;
	transform: translateY(-20px);
}
to {
	opacity: 1;
	transform: translateY(0);
}
}
