﻿:root {
    --theme-border-color: grey;
    --theme-primary-background: #111111;
    --theme-primary-text-color: #F2F2F2;
    --theme-primary-hover-color: gold;
    --theme-secondary-background: #1C1C1C;
    --theme-primary-input-background: #1C1C1C;
    --theme-primary-input-text-color: #F2F2F2;
    --testimonial-card-background: #372b3e;
    --cta-button-background: #6E7C86;
    --cta-button-text-color: #F2F2F2;
    --cta-button-border: 1px solid grey;
    --admin-text-color: gold;
    --theme-standard-border: 1px solid grey;
}

.badge {
    color: white;
    background-color: blueviolet;
}

.btn-primary {
    color: var(--cta-button-text-color);
    background: linear-gradient(to bottom, #555 0%, #333 100%);
    border: var(--cta-button-border) !important;
    text-decoration: none;
}

    .btn-primary:hover {
        background: linear-gradient(to bottom, #333 0%, #555 100%);
        border: var(--cta-button-border);
    }

    .btn-primary svg {
        fill: var(--cta-button-text-color);
    }

    .btn-primary:hover svg {
        fill: var(--cta-button-text-color);
    }

.stdlinks {
    color: lightblue;
    text-decoration:none;
}

    .stdlinks:hover {
        color: blue;
    }

input[type="text"]:disabled {
    color: black;
    background-color: lightgrey;
}
