/* Custom Font */
@font-face {
    font-family: 'Euclid Circular B Regular';
    src: url(../font/EuclidCircularB-Regular.ttf);
}

:root {
    --font-family: 'Euclid Circular B Regular', sans-serif;
    --primary-color: #00263a;
    --secondary-color: #009cde;
    --accent-color: #00578d;
    --disabled-font-color: #00263a;
    --disabled-background-color: #ccd4d7;
}

body {
    font-family: var(--font-family);
    background-color: var(--primary-color);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.encrypt,
.clipboard {
    background-color: var(--secondary-color);
}

button {
    font-family: var(--font-family);
}

button:hover {
    background-color: var(--accent-color);
}

#textarea1:read-only {
    background-color: var(--disabled-background-color);
    color: var(--disabled-font-color);
    cursor: not-allowed;
    pointer-events: none;
}

button:disabled {
    background-color: var(--disabled-background-color);
    color: var(--disabled-font-color);
    cursor: not-allowed;
    pointer-events: none;
}

.logo {
    margin-top: 32px;
    width: 350px;  /* Adjust the width as needed */
    height: auto;  /* Maintain aspect ratio */
}

#textarea1 {
    font-family: var(--font-family);
}

.alert {
    color: white;
    font-family: var(--font-family);
    width: 100%;
    height: 2.5rem;
    margin-bottom: 1rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.alert-styling {
    width: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #b04b2f;
    padding: 1rem;
}

.alert-title {
    font-weight: bold;
    margin-right: 0.25rem;
}