#container {
  background: #EEE;
  height: 400px;
  width: 400px;
  position: relative;
}

#float_bottom {
  position: absolute;
  bottom: 30px;
}

.bg_tm {
  background-image: url("/static/images/Siamak-Shams-TM-no-text.svg");
  background-color: #cccccc;
  height: 100px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg_place_holder {
  background-image: url(var(--url));
  background-color: #cccccc;
  height: var(--height);
  background-position: center;
  background-repeat: no-repeat;
  background-size: var(--size);
}

/*
@media (min-width:320px) and (min-width:481px) and (min-width:641px) {
   smartphones, iPhone, portrait 480x320 phones 
  portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. 
  portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones 
  .bg_place_holder_small {
    background-image: url("/static/images/blank_asset.jpg");
    background-color: #cccccc;
    height: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
*/

@media (min-width:961px) and (min-width:1025px) and (min-width:1281px) {

  /* smartphones, iPhone, portrait 480x320 phones */
  /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */
  /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */
  .bg_place_holder_small {
    background-image: url("/static/images/blank_asset.jpg");
    background-color: #cccccc;
    height: 200px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.calendar {
  width: 200px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
  text-align: center;
  padding: 10px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

.days,
.dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.day,
.date {
  text-align: center;
  padding: 10px;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.date {
  cursor: pointer;
}

.date.highlighted {
  background-color: #ffeb3b;
  font-weight: bold;
}

.empty {
  background-color: #f9f9f9;
  border: none;
}

.calendar {
  width: 200px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.month-title {
  background-color: #f5f5f5;
  padding: 8px;
  font-weight: bold;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th {
  /*font-size: 12px;*/
  padding: 5px 0;
  background-color: #efefef;
}

td {
  width: 14.28%;
  height: 30px;
  /*font-size: 12px;*/
  border: 1px solid #eee;
  vertical-align: middle;
}

.highlight {
  background-color: #ffeb3b;
  font-weight: bold;
  color: #000;
}
