﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

/* Provide sufficient contrast against white background */
a {
  color: #0366d6;
}

.btn-primary {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  font-size: 14px;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.border-top {
  border-top: 1px solid #e5e5e5;
}
.border-bottom {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
  font-size: 1rem;
  line-height: inherit;
}

/* Sticky footer styles
-------------------------------------------------- */
html {
  position: relative;
  min-height: 100%;
}

body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
  background-image: url(/images/wallpaper.png);
}
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px; /* Vertically center the text there */
  background: white;
}


span.btn-link {
    cursor: pointer;
}


/* --- CUSTOMS --- */
.alertBox {
    background-color: #dcffd9;
    color: #005600 !important;
    padding: 5px 5px 5px 45px;
    border-radius: 5px;
    border: 2px solid #005600;
    background-image: url('/images/party_32.png');
    background-repeat: no-repeat;
    background-position: 5px 5px;
    min-height: 48px;
    white-space: normal;
    margin: 10px 0;
}

    .alertBox.error {
        background-color: #ffefef;
        color: #CA0000 !important;
        border: 2px solid red;
        background-image: url('/images/error_32.png');
    }

    .alertBox.sad {
        background-image: url('/images/sad_32.png');
    }

    .alertBox.artist {
        background-image: url('/images/art_32.png');
    }

    .alertBox.tag {
        background-image: url('/images/tag_32.png');
    }

    .alertBox.info {
        background-image: url('/images/info_32.png');
    }

.FormItem {
    display: block;
    min-width: 300px;
    margin: 12px 0;
}

.FormField {
    padding: 6px 12px;
}

.selectable {
    display: inline-block;
    padding: 8px 8px 8px 26px;
    margin: 0 8px 8px 0;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1.1em;
}

    .selectable.unselected {
        background-color: white;
        border: 2px solid #1b6ec2;
        color: black;
    }

    .selectable.selected {
        background: #007bff url(/images/check-mark_16.png) 4px 12px no-repeat;
        border: 2px solid black;
        color: white;
    }

.PlayerToken {
    padding: 7px;
    font-weight: bold;
    font-size: 1.2em;
    margin: 0 10px 10px 0;
    border-radius: 5px;
    border: 2px solid #1861ac;
    display: inline-block;
    position: relative;
}

.TeamHolder {
    display: inline-block;
    width: 45%;
    padding: 10px;
    border: 2px solid #1861ac;
    border-radius: 7px;
    vertical-align: top;
}

.TeamTitle {
    font-size: 1.7em;
    font-weight: bold;
    width: 100%;
    padding-bottom: 5px;
}

.TeamMembers {
    padding-left: 0px;
}

.ChosenCard {
    padding: 6px;
    font-weight: bold;
    font-size: 1.0em;
    margin: 0 8px 8px 0;
    border-radius: 5px;
    border: 2px solid #1861ac;
    display: inline-block;
}

.PlayerCardCount {
    position: absolute;
    top: -8px;
    right: -8px;
    background: royalblue;
    width: 24px;
    height: 24px;
    text-align: center;
    border-radius: 16px;
    border: 2px solid white;
    font-size: 0.9em;
    color: white;
    line-height: 1em;
    cursor: default;
}

.GuesserButton {
    display: inline-block;
}

.BGPassThrough {
    background-color: rgba(255,255,255,.94);
    border-radius: 20px;
    padding: 10px;
}

.wordoption {
    position: relative;
}

.wordInfoIcon {
    position: absolute;
    top: -15px; 
    right: -15px;
    width: 24px;
    height: 24px;
    background-image: url(/images/information_24.png);
    z-index:10;
    cursor: pointer;
}

.descriptionText {
    display: none;
}

#AvailableCardsHolder {
    max-height: calc(100vh - 250px);
    overflow-y: auto;
}

blockquote {
    background-color: lightgray;
    border-left: 14px solid #5a5a5a;
    padding: 20px 20px 20px 30px;
    margin: 0 20px;
}

@media screen and (min-width: 676px) {
    .modal-dialog {
        max-width: 600px; /* New width for default modal */
    }
}