@font-face {
    font-family: sevenSegment;
    src: url(Segment7Standard.otf);
}

@font-face {
    font-family: roboto;
    src: url(roboto.ttf);
}

body {
    margin: 0px;
}

#main_table {
    background-color: white;
    background-size: cover;
    margin: 0px;
    border: none;
    border-collapse: collapse;
}

/* CLOCK AND DATE */
#clock_date {
    background-color: rgba(0, 0, 0, 0.7);
}
#clock{
    padding: 20px;
    font-family: sevenSegment;
    font-size: 13vmin;
    color: red;
}
#date {
    font-family: sevenSegment;
    color: red;
    font-size: 9vmin;
}
#day_name {
    color: red;
    font-family: roboto;
    font-size: 6vmin;
}

/* MASJID NAME AND LOCATION */
#masjid_name_location {
    background-color: rgba(0, 0, 0, 0.7);
}
#masjid_name_1 {
    color: #63a193;
    font-size: 7vmin;
}

#masjid_name_2 {
    color: #63a193;
    font-size: 10vmin;
}
#masjid_location {
    color: #63a193;
    font-size: 7vmin;
}

/* PRAYER TIME AND NAME*/
.prayer_time {
    font-family: sevenSegment;
    color: red;
    font-size: 10vmin;
}
.prayer_name {
    font-family: roboto;
    color: #d8d6af;
    font-size: 7vmin;
}
.prayer_time_name {
    background-color: rgba(0, 0, 0, 0.7);
}

.ui-autocomplete{
    z-index: 1065;
}

#counter {
    opacity:0.0;
}
#count_title {
    margin-left: 20px;
    font-family: roboto;
    color: red;
    font-size: 6vmin;
}

#count_time {
    margin-left: 20px;
    font-family: sevenSegment;
    color: red;
    font-size: 8vmin;
}

#inner_count_time {
    background-color: rgba(0, 0, 0, 0.7);
}

/* MODAL START */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5); /* semi-transparent black overlay */
    z-index: 9999;
    display: none; /* hide the modal by default */
}
.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 400px;
    max-width: 90%;
    max-height: 90%;
    /*overflow-y: auto;*/
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.modal-header h2 {
    margin: 0;
}

.modal-close {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #ccc;
}

.modal-ok {
    cursor: pointer;
    font-size: 14px;
    /*font-weight: bold;*/
    margin-top: 10px;
    float:right;
    /*color: #ccc;*/
}
