/* General Styling */
body {
    background-color: #25303F;  /* Dark background color */
    color: #fff;  /* Default text color */
    font-family: Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
}

/* 75% Prominent Dove Agency Logo Styling */
.prominent-logo {
    width: 400px;  /* Larger size for prominence */
    margin-bottom: 20px;
}

/* Dove Agency Title */
#page-title {
    font-size: 2.5rem;  /* Larger title */
}

/* Supporting LinkedIn Logo Styling (25% Prominent) */
.supporting-logo {
    width: 100px;  /* Smaller size for LinkedIn */
    opacity: 0.8;  /* Slight transparency */
    margin-bottom: 10px;
}

h1, p.lead {
    color: #FFFFFF;  /* White text for headings */
}

form {
    background-color: #2E3B4A;  /* Slightly lighter dark background for the form */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

img {
    max-width: 100%;  /* Ensure images scale properly */
    height: auto;
}

/* Background Animation */
.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://doveagency.se/wp-content/uploads/2024/08/DODI0003_Logo_Liggande_Vit_RGB_210330.png');
    background-size: 60%;  /* Focus on the Dove Agency logo */
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.1;  /* Semi-transparency */
    z-index: -1;
    animation: moveBackground 20s infinite alternate ease-in-out;
}

@keyframes moveBackground {
    0% {
        background-position: bottom right;
    }
    100% {
        background-position: top right;
    }
}

#result {
    display: none;
    color: #FFFFFF;
}

/* Table styling for alternating rows and header */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
}

table th, table td {
    padding: 12px 15px;
}

.table th {
    background-color: #333;
    color: white;
    font-weight: bold;
}

table tr:nth-child(even) {
    background-color: #f2f2f2;  /* Light grey */
}

table tr:nth-child(odd) {
    background-color: white;
}

.form-check-inline {
    display: inline-block;
    margin-right: 15px;
}

/* Optional: Additional styling for radio buttons */
.form-check-input {
    margin-right: 5px;
}