/*
Theme Name: egenkodad hemsida
Author: Ditt Namn
Description: Ett specialbyggt tema för min hemsida.
Version: 1.0
*/

/* Stil för sekundär knapp */
.btn-secondary {
    padding: 0.75rem 1.5rem;
    border: 2px solid #2563EB; /* Samma blå färg som primärknappen */
    color: #2563EB;
    border-radius: 0.375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.btn-secondary:hover {
    background-color: #2563EB;
    color: white;
}

/* Stil för info-ikonen */
.info-icon {
    color: #6B7280; /* Grå färg */
    cursor: pointer;
    transition: color 0.2s ease-in-out;
    background: none;
    border: none;
    padding: 0;
}

.info-icon:hover {
    color: #1F2937; /* Mörkare grå */
}