/* ========================================
   FÆLLES PROGRAM DESIGN
======================================== */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


/* ========================================
   PROGRAM-HEADER
======================================== */

.program-header {
    height: 80px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    border-bottom: 1px solid #ccc;
    background-color: #f5f5f5;
}


/* Programtitel */

.program-title {
    text-align: center;
}

.program-title h1 {
    margin: 0 0 4px 0;
    font-size: 24px;
}


/* Advarsel */

.program-warning {
    font-size: 11px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.5px;
}


/* ========================================
   TILBAGE-KNAP
======================================== */

.tilbage-knap {
    position: absolute;
    left: 15px;

    padding: 8px 14px;

    text-decoration: none;
    color: #333;

    border: 1px solid #aaa;
    border-radius: 5px;

    background-color: white;
}

.tilbage-knap:hover {
    background-color: #e8e8e8;
}


/* ========================================
   PROGRAMVINDUE
======================================== */

.program-container {
    flex: 1;
    min-height: 0;
    padding: 10px;
}

#programvindue {
    width: 100%;
    height: 100%;

    border: 1px solid #f0d58d;
    background-color: #f0d58d;

    overflow: hidden;
}

/* --------------------------------
   MOUSE Instructions
-------------------------------- */
.mouse-instructions {
    position: absolute;

    right: 15px;
    top: 96px;

    height: 180px;
    width: auto;
}
