/*
Plugin Name: Resume Upload
Author: mbbhatti
*/

/* Table */
#customers {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
}

#customers td, #customers th {
    border: 1px solid #ddd;
    padding: 8px;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: left;
    background-color: #4CAF50;
    color: white;
}

/* Text Fields */
.input-field-cls{
	width: 46%;
	float: left;
	margin: 2% 2%;
}

.all-fields{	
	margin: 2% 2%;
	width: 96%;
	float: left;
}

.btn-style{
	padding: 30px;
	width: 100%;
	margin: 5% 0;
}

.label-style{
	font-weight: bold;
}
.mark-style{
	color:red;
	font-weight: bold;
}

.success-style{
	color:green;
	margin: 2% 2%;
}
.error-style{
	color:red;
	margin: 2% 2%;
}

@media only screen and (max-width: 767px) {
  .input-field-cls{
		width: 100%;
		float: none;
	}
  .all-fields{      
    width: 100%;
    float: none;
  }
}

/* File Field */
.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.btn {
  border: 2px solid #000;
  color: #000;
  background-color: white;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin: 5% 0 0 0;
}

.upload-btn-wrapper input[type=file] {
  font-size: 27px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  margin: 12px 0;
  width: 100%;
}