/* Global utils */
:root {
    --header-margin: 18vw;
    --content-margin: 20vw;
    --theme-colour: #c0c55c;
    --text-colour: white;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    color: black;
    background: radial-gradient(circle at bottom, rgb(47, 47, 47), rgb(30, 30, 30));
}
.cdmainbody{
    margin-left: var(--content-margin);
    margin-right: var(--content-margin);
}


/* Font Weight Re-mappings */
strong {
    font-weight: 600;
}

h1, h2, h3, h4{
    font-weight: 600;
}


/* Page(s) Background */
/* .globalBackground {
    background: radial-gradient(circle at bottom, rgb(47, 47, 47), rgb(30, 30, 30));
    background-size: cover;
    min-height: 100vh;
} */


/* Button Utilities */
.btn {
    width: fit-content;
    height: auto;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
}

.btn:hover {
    opacity: 60%;
    transition: 0.25s ease-in-out;
}

.btn img {
    height: 24px;
    width: 24px;
    padding-right: 5px;
}

.btn p {
    color: var(--text-colour);
    margin: 0;
    padding: 0;
}

.btn p i {
    margin-left: 5px;
}

.btn-primary {
    color: var(--text-colour-dark);
    background-color: var(--theme-colour);
}

.btn-secondary {
    color: var(--text-colour);
    background-color: gray;
}


/* Toast Message Utilities */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.toast {
    color: white;
    padding: 15px 25px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    transition: 0.2s ease-in-out;
}

.toast i{
    margin-right: 5px;
    font-size: 1.1em
}

.toast-info {
    background-color: #3d84c7;
}

.toast-info:hover {
    background-color: #3d84c7cc;
}

.toast-success {
    background-color: #5dc73d;
}

.toast-success:hover {
    background-color: #5dc73dcc;
}

.toast-error {
    background-color: #ce3e2b;
}

.toast-error:hover {
    background-color: #ce3e2bcc;
}
