@import 'css_bare.css';

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background: #6B1A1A;
    color: #fff;
    font-family: Tahoma, sans-serif;
    margin-bottom: 50px;
}

body, table {
    font-size: 14px;
}

h3 {
    text-align: center;
}

h3 button { margin-left: 40px; font: inherit; font-weight: normal; }

.input {
    padding: 7px 17px;
    box-shadow: 0 0 5px rgba(0,0,0,0.7);
    border: 1px solid #ccc;
    background: #fff;
    border: 3px solid #fff;
    display: inline-block;
    border-radius: 4px;
}

.btn {
    background: #fff;
    color: #6B1A1A;
    padding: 7px 17px;
    border: 3px solid #fff;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.7);
}

.btn:hover {
    background: #eee;
    color: #222;
}

.resize-box {
    border: 2px solid;
    padding: 20px; 
    border: 1px solid #000;
    width: 600px;
    resize: both;
    box-shadow: inset 0 0 0 10px #fff;
    overflow: auto;
}

.resize-box .event-calendar a span {
    display: none;
}

textarea {
    width: 500px;
    height: 200px;
    padding: 20px;
}

.event-calendar input, .event-calendar select {
    font-size: inherit;
    text-align: center;
    margin: 5px 0;
}

.event-calendar td input {
    background: transparent;
    border: none;
    color: #fff;
    width: 100%;
    text-align: center;
    display: block;
}

.event-calendar th input {
    width: 60px;
}

p a {
    color: red;
}