/* Page Layout Elements */


* {
    box-sizing: border-box;
}


html {
    background-image: url(/kflip_background.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

h2 {
    font-family: 'Oswald';
    font-size: 1.5em;
    font-weight: 400;
    color: #fff;
    margin: 5px 0px;
}

body {
    margin: 10px;
}

div.column-content {
    width: 100%;
    height: auto;
}

div.column-content .albumarea {
    align-content: center;
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    max-height: 400px;
}

div.column-content .albumarea .albumimage {
    width: 100%;
    height: auto;

    border-radius: 5px;
    max-width:300px;
    max-height:265px;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

div.column-content .livelinkarea {
    align-content: center;
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    height: 200px;

    font-family: 'Oswald';
    font-size: 1.3em;
    font-weight: 400;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}


div.column-content .livelinkarea a {
    color: #1ABC9C;
}

div.column-content .livelinkarea a:visited {
    color: #7095D2;
}



.column {
    padding: 0 6px;
    float: left;
    width: 49.99999%;
    max-width: 500px;
}

@media only screen and (max-width: 500px) {
    .column {
        width: 100%;
    }
}

.chat-window {
    height: 90vh;
    display: flex;
    flex-direction: column;
}

widgetbot {
    flex: 1;
    min-height: 0;
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}


/* Listener Group - the top menu bar thiny */


.title-bar {
    margin: 10px;
    height: 35px;
    max-width: 980px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: rgb(54, 57, 62);
    border-radius: 5px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);

    font-family: 'Oswald';
    font-size: 1.3em;
    font-weight: 400;
    color: #fff;
}



.title-bar .count {
    padding-left: 30px;
    float: right;
}

.title-bar .phone {
    padding-left: 30px;
    float: right;
}




/* Helpbox and Modal Dialog */



/* Help Box*/
.minihelpbox {
    width: 100%;
    padding-top: 5px;
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    height: 35px;
    margin: 0 0 5px;
}



.minihelpbox p {
    font-family: 'Oswald';
    font-size: 1em;
    font-weight: 400;
    color: #fff;
    /*padding-bottom: 15px;*/
    margin: 0px;
    text-align: center;
}

.minihelpbox a {
    font-family: 'Oswald';
    font-size: 1em;
    font-weight: 400;
    color: #fff;
    /*padding-bottom: 15px;*/
    margin: 0px;
    text-align: left;
}


.minihelpbox p:hover {
    color: #7095D2;
}


.helptext {
    font-family: 'Oswald';
    font-size: 1em;
    font-weight: 400;
    color: #fff;
    padding-bottom: 15px;
}


.helptext a {
    color: #1ABC9C;
}

.helptext a:visited {
    color: #7095D2;
}

.helpsubject {
    font-family: 'Oswald';
    font-size: 1em;
    font-weight: 400;
    color: #1ABC9C;
}


.calendarlinkbox {
    width: 100%;
    padding-top: 5px;
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    height: 35px;
    margin: 0 0 5px;
}

.calendarlinkbox p {
    font-family: 'Oswald';
    font-size: 1em;
    font-weight: 400;
    color: #fff;
    /*padding-bottom: 15px;*/
    margin: 0px;
    text-align: center;
}

.calendarlinkbox a {
    font-family: 'Oswald';
    font-size: 1em;
    font-weight: 400;
    color: #fff;
    /*padding-bottom: 15px;*/
    margin: 0px;
    text-align: center;
}

.calendarlinkbox p:hover {
    color: #7095D2;
}



/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 100; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    border-radius: 5px;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

.modal-header {
    padding: 2px 16px;
    background-color: #7095D2;
    color: white;
}

.modal-body {
    padding: 2px 16px;
    background-color: #000;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #5cb85c;
    color: white;
}



/* Patron Box*/


.patreon-area {
    padding: 5px 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 90%;
    flex-shrink: 0;
}

.patreon-buttons {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.patreon-column {
    flex: 1;
    display: flex;
    flex-direction: row;
}

.patreon-button {
    flex: 1;
    display: flex;    
    
    /* Colors */
    background-color: #f96854; /* Patreon Carnation */
    color: #ffffff;             /* White text for contrast */

    /* Typography */
    font-family: sans-serif;  /* Use a web-safe font, or embed "Oracle" if possible */
    font-weight: 400;         /* Bold text */
    font-size: 20px;
    text-decoration: none;    /* Remove underline from links */

    /* Layout and Shape */
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;       /* Slightly rounded corners */
    border: none;
    cursor: pointer;
    text-align: center;

    /* Optional: Hover effect */
    transition: background-color 0.3s ease;
}

.patreon-button:hover {
    background-color: #e64413; /* A slightly darker shade for hover effect */
}

.patreon-button a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #303030;
    text-decoration: none;

    padding: 10px;
    font-family: sans-serif;  /* Use a web-safe font, or embed "Oracle" if possible */
    font-weight: 600;         /* Bold text */
    font-size: 15px;    
}

.patreon-supporter {
    width: 100%;
    
    padding: 5px 10px;
    background-color: rgb(54, 57, 62);
    border-radius: 5px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.2);

    font-family: 'Oswald';
    font-size: 1.3em;
    font-weight: 400;
    color: #fff;
    
    flex-shrink: 0;
}


